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 / radial-bar / block.json

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

130 lines 3.2 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/radial-bar",
5 "title": "Radial Bar Chart",
6 "category": "bkbg-charts",
7 "icon": "chart-pie",
8 "description": "Concentric circular progress arcs \u2014 each ring represents a different metric, great for comparing multiple KPIs at a glance.",
9 "attributes": {
10 "title": {
11 "type": "string",
12 "default": "Q4 Performance Metrics"
13 },
14 "showTitle": {
15 "type": "boolean",
16 "default": true
17 },
18 "svgSize": {
19 "type": "integer",
20 "default": 460
21 },
22 "trackWidth": {
23 "type": "integer",
24 "default": 22
25 },
26 "trackGap": {
27 "type": "integer",
28 "default": 10
29 },
30 "startAngle": {
31 "type": "integer",
32 "default": -90
33 },
34 "maxValue": {
35 "type": "integer",
36 "default": 100
37 },
38 "showValues": {
39 "type": "boolean",
40 "default": true
41 },
42 "showLabels": {
43 "type": "boolean",
44 "default": true
45 },
46 "showLegend": {
47 "type": "boolean",
48 "default": true
49 },
50 "roundedCaps": {
51 "type": "boolean",
52 "default": true
53 },
54 "labelFontSize": {
55 "type": "integer",
56 "default": 12
57 },
58 "valueFontSize": {
59 "type": "integer",
60 "default": 11
61 },
62 "bgColor": {
63 "type": "string",
64 "default": "#ffffff"
65 },
66 "trackBgColor": {
67 "type": "string",
68 "default": "#f3f4f6"
69 },
70 "titleColor": {
71 "type": "string",
72 "default": "#111827"
73 },
74 "textColor": {
75 "type": "string",
76 "default": "#374151"
77 },
78 "series": {
79 "type": "array",
80 "default": [
81 {
82 "label": "Revenue",
83 "value": 87,
84 "color": "#6366f1"
85 },
86 {
87 "label": "Users",
88 "value": 73,
89 "color": "#10b981"
90 },
91 {
92 "label": "Conversion",
93 "value": 61,
94 "color": "#f59e0b"
95 },
96 {
97 "label": "Retention",
98 "value": 94,
99 "color": "#ef4444"
100 },
101 {
102 "label": "NPS Score",
103 "value": 56,
104 "color": "#8b5cf6"
105 }
106 ]
107 },
108 "labelFontWeight": {
109 "type": "number",
110 "default": 600
111 },
112 "valueFontWeight": {
113 "type": "number",
114 "default": 700
115 },
116 "titleTypo": {
117 "type": "object",
118 "default": {}
119 }
120 },
121 "supports": {
122 "align": [
123 "wide",
124 "full"
125 ]
126 },
127 "editorScript": "bkbg-radial-bar-editor",
128 "style": "bkbg-radial-bar-style"
129 }
130