# blockenberg/2.0.7/blocks/radar-chart/block.json

Blockenberg — 600+ Advanced Gutenberg Blocks &amp; AI Agent for WordPress Block Editor, version 2.0.7. 92 lines.

- Page: https://pluginprobe.com/plugins/blockenberg/2.0.7/code/blocks/radar-chart/block.json
- Raw: https://pluginprobe.com/plugins/blockenberg/2.0.7/raw/blocks/radar-chart/block.json
- Modified: 2026-03-06T12:32:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/blockenberg/2.0.7/code/blocks/radar-chart/block.json#L10-L20`.

```json
{
    "apiVersion": 3,
    "$schema": "https://schemas.wp.org/trunk/block.json",
    "name": "blockenberg/radar-chart",
    "title": "Radar Chart",
    "category": "bkbg-charts",
    "icon": "chart-area",
    "description": "Spider/radar chart with multiple datasets, fill transparency, and axis customization using Chart.js (CDN).",
    "keywords": [
        "chart",
        "radar",
        "spider",
        "web",
        "data",
        "visualization"
    ],
    "textdomain": "blockenberg",
    "editorScript": "bkbg-radar-chart-editor",
    "editorStyle": "bkbg-radar-chart-style",
    "style": "bkbg-radar-chart-style",
    "viewScript": "bkbg-radar-chart-frontend",
    "supports": {
        "html": false,
        "anchor": true,
        "className": true,
        "align": []
    },
    "attributes": {
        "labels": {
            "type": "string",
            "default": "Speed,Power,Range,Accuracy,Endurance,Agility"
        },
        "datasets": {
            "type": "array",
            "default": [
                {
                    "label": "Team A",
                    "data": "65,80,75,90,60,85",
                    "color": "#6c3fb5",
                    "fillAlpha": 0.2
                },
                {
                    "label": "Team B",
                    "data": "80,55,90,70,85,65",
                    "color": "#e040fb",
                    "fillAlpha": 0.2
                }
            ]
        },
        "size": {
            "type": "number",
            "default": 340
        },
        "scaleMin": {
            "type": "number",
            "default": 0
        },
        "scaleMax": {
            "type": "number",
            "default": 100
        },
        "gridLines": {
            "type": "number",
            "default": 5
        },
        "showLegend": {
            "type": "boolean",
            "default": true
        },
        "legendPos": {
            "type": "string",
            "default": "top"
        },
        "bgColor": {
            "type": "string",
            "default": "#ffffff"
        },
        "borderRadius": {
            "type": "number",
            "default": 12
        },
        "title": {
            "type": "string",
            "default": ""
        },
        "titleTypo": {
            "type": "object",
            "default": {}
        }
    }
}

```
