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 / sunburst-chart / block.json

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

152 lines 3.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "blockenberg/sunburst-chart",
5 "title": "Sunburst Chart",
6 "category": "bkbg-charts",
7 "icon": "chart-pie",
8 "description": "A two-ring radial hierarchy chart \u2014 the inner ring shows main segments and the outer ring shows their sub-categories.",
9 "attributes": {
10 "title": {
11 "type": "string",
12 "default": "Revenue by Region & Channel"
13 },
14 "showTitle": {
15 "type": "boolean",
16 "default": true
17 },
18 "svgSize": {
19 "type": "integer",
20 "default": 520
21 },
22 "innerRadius": {
23 "type": "integer",
24 "default": 80
25 },
26 "midRadius": {
27 "type": "integer",
28 "default": 180
29 },
30 "outerRadius": {
31 "type": "integer",
32 "default": 240
33 },
34 "showLabels": {
35 "type": "boolean",
36 "default": true
37 },
38 "showValues": {
39 "type": "boolean",
40 "default": true
41 },
42 "showLegend": {
43 "type": "boolean",
44 "default": true
45 },
46 "labelFontSize": {
47 "type": "integer",
48 "default": 11
49 },
50 "valueFontSize": {
51 "type": "integer",
52 "default": 10
53 },
54 "bgColor": {
55 "type": "string",
56 "default": "#ffffff"
57 },
58 "titleColor": {
59 "type": "string",
60 "default": "#111827"
61 },
62 "textColor": {
63 "type": "string",
64 "default": "#374151"
65 },
66 "segments": {
67 "type": "array",
68 "default": [
69 {
70 "label": "Americas",
71 "color": "#6366f1",
72 "children": [
73 {
74 "label": "Direct",
75 "value": 38
76 },
77 {
78 "label": "Partners",
79 "value": 24
80 },
81 {
82 "label": "Online",
83 "value": 18
84 }
85 ]
86 },
87 {
88 "label": "Europe",
89 "color": "#10b981",
90 "children": [
91 {
92 "label": "Direct",
93 "value": 29
94 },
95 {
96 "label": "Partners",
97 "value": 15
98 }
99 ]
100 },
101 {
102 "label": "Asia",
103 "color": "#f59e0b",
104 "children": [
105 {
106 "label": "Direct",
107 "value": 20
108 },
109 {
110 "label": "Online",
111 "value": 32
112 },
113 {
114 "label": "Resellers",
115 "value": 10
116 }
117 ]
118 },
119 {
120 "label": "Other",
121 "color": "#ef4444",
122 "children": [
123 {
124 "label": "Direct",
125 "value": 14
126 }
127 ]
128 }
129 ]
130 },
131 "labelFontWeight": {
132 "type": "string",
133 "default": "400"
134 },
135 "labelLineHeight": {
136 "type": "number",
137 "default": 1.4
138 },
139 "titleTypo": {
140 "type": "object",
141 "default": {}
142 }
143 },
144 "supports": {
145 "align": [
146 "wide",
147 "full"
148 ]
149 },
150 "editorScript": "bkbg-sunburst-chart-editor",
151 "style": "bkbg-sunburst-chart-style"
152 }