PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
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 / pie-chart / block.json

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

148 lines 3.7 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/pie-chart",
5 "version": "1.0.0",
6 "title": "Pie Chart",
7 "category": "bkbg-charts",
8 "icon": "chart-pie",
9 "description": "SVG-based pie chart with labelled wedge segments, percentage display, and an optional legend. Renders inline without external libraries \u2014 no doughnut/ring, true pie slices with mid-wedge labels and hover tooltips.",
10 "keywords": [
11 "pie chart",
12 "chart",
13 "graph",
14 "statistics",
15 "data visualization",
16 "donut",
17 "wedge"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-pie-chart-editor",
21 "style": "bkbg-pie-chart-style",
22 "supports": {
23 "html": false,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "title": {
31 "type": "string",
32 "default": "Revenue by Channel"
33 },
34 "showTitle": {
35 "type": "boolean",
36 "default": true
37 },
38 "subtitle": {
39 "type": "string",
40 "default": "Q1 2025 breakdown"
41 },
42 "showSubtitle": {
43 "type": "boolean",
44 "default": true
45 },
46 "slices": {
47 "type": "array",
48 "default": [
49 {
50 "label": "Organic Search",
51 "value": 42,
52 "color": "#6c3fb5"
53 },
54 {
55 "label": "Direct",
56 "value": 28,
57 "color": "#3b82f6"
58 },
59 {
60 "label": "Referral",
61 "value": 18,
62 "color": "#10b981"
63 },
64 {
65 "label": "Social Media",
66 "value": 12,
67 "color": "#f59e0b"
68 }
69 ]
70 },
71 "size": {
72 "type": "integer",
73 "default": 280
74 },
75 "showLabels": {
76 "type": "boolean",
77 "default": true
78 },
79 "showPercentages": {
80 "type": "boolean",
81 "default": true
82 },
83 "showLegend": {
84 "type": "boolean",
85 "default": true
86 },
87 "legendPosition": {
88 "type": "string",
89 "default": "right"
90 },
91 "strokeWidth": {
92 "type": "integer",
93 "default": 2
94 },
95 "strokeColor": {
96 "type": "string",
97 "default": "#ffffff"
98 },
99 "layout": {
100 "type": "string",
101 "default": "side"
102 },
103 "titleAlign": {
104 "type": "string",
105 "default": "center"
106 },
107 "borderRadius": {
108 "type": "integer",
109 "default": 16
110 },
111 "paddingTop": {
112 "type": "integer",
113 "default": 48
114 },
115 "paddingBottom": {
116 "type": "integer",
117 "default": 48
118 },
119 "titleTypo": {
120 "type": "object",
121 "default": {}
122 },
123 "subtitleTypo": {
124 "type": "object",
125 "default": {}
126 },
127 "legendTypo": {
128 "type": "object",
129 "default": {}
130 },
131 "bgColor": {
132 "type": "string",
133 "default": "#ffffff"
134 },
135 "titleColor": {
136 "type": "string",
137 "default": "#0f172a"
138 },
139 "subtitleColor": {
140 "type": "string",
141 "default": "#64748b"
142 },
143 "legendColor": {
144 "type": "string",
145 "default": "#374151"
146 }
147 }
148 }