PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / radar-chart / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/radar-chart/block.json

92 lines 2.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/radar-chart",
5 "title": "Radar Chart",
6 "category": "bkbg-charts",
7 "icon": "chart-area",
8 "description": "Spider/radar chart with multiple datasets, fill transparency, and axis customization using Chart.js (CDN).",
9 "keywords": [
10 "chart",
11 "radar",
12 "spider",
13 "web",
14 "data",
15 "visualization"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-radar-chart-editor",
19 "editorStyle": "bkbg-radar-chart-style",
20 "style": "bkbg-radar-chart-style",
21 "viewScript": "bkbg-radar-chart-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": []
27 },
28 "attributes": {
29 "labels": {
30 "type": "string",
31 "default": "Speed,Power,Range,Accuracy,Endurance,Agility"
32 },
33 "datasets": {
34 "type": "array",
35 "default": [
36 {
37 "label": "Team A",
38 "data": "65,80,75,90,60,85",
39 "color": "#6c3fb5",
40 "fillAlpha": 0.2
41 },
42 {
43 "label": "Team B",
44 "data": "80,55,90,70,85,65",
45 "color": "#e040fb",
46 "fillAlpha": 0.2
47 }
48 ]
49 },
50 "size": {
51 "type": "number",
52 "default": 340
53 },
54 "scaleMin": {
55 "type": "number",
56 "default": 0
57 },
58 "scaleMax": {
59 "type": "number",
60 "default": 100
61 },
62 "gridLines": {
63 "type": "number",
64 "default": 5
65 },
66 "showLegend": {
67 "type": "boolean",
68 "default": true
69 },
70 "legendPos": {
71 "type": "string",
72 "default": "top"
73 },
74 "bgColor": {
75 "type": "string",
76 "default": "#ffffff"
77 },
78 "borderRadius": {
79 "type": "number",
80 "default": 12
81 },
82 "title": {
83 "type": "string",
84 "default": ""
85 },
86 "titleTypo": {
87 "type": "object",
88 "default": {}
89 }
90 }
91 }
92