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 / violin-plot / block.json

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

194 lines 4.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "name": "blockenberg/violin-plot",
4 "title": "Violin Plot",
5 "category": "bkbg-charts",
6 "icon": "chart-area",
7 "description": "Statistical violin plot showing data distribution shape and quartile summary for multiple groups.",
8 "textdomain": "blockenberg",
9 "editorScript": "bkbg-violin-plot-editor",
10 "style": "bkbg-violin-plot-style",
11 "attributes": {
12 "title": {
13 "type": "string",
14 "default": "Score Distribution by Group"
15 },
16 "showTitle": {
17 "type": "boolean",
18 "default": true
19 },
20 "svgWidth": {
21 "type": "number",
22 "default": 680
23 },
24 "svgHeight": {
25 "type": "number",
26 "default": 380
27 },
28 "padTop": {
29 "type": "number",
30 "default": 30
31 },
32 "padLeft": {
33 "type": "number",
34 "default": 55
35 },
36 "padRight": {
37 "type": "number",
38 "default": 20
39 },
40 "padBottom": {
41 "type": "number",
42 "default": 50
43 },
44 "violinWidth": {
45 "type": "number",
46 "default": 60
47 },
48 "showMedian": {
49 "type": "boolean",
50 "default": true
51 },
52 "showIQR": {
53 "type": "boolean",
54 "default": true
55 },
56 "showGrid": {
57 "type": "boolean",
58 "default": true
59 },
60 "showLegend": {
61 "type": "boolean",
62 "default": true
63 },
64 "fillOpacity": {
65 "type": "number",
66 "default": 75
67 },
68 "yAxisLabel": {
69 "type": "string",
70 "default": "Score"
71 },
72 "labelFontSize": {
73 "type": "number",
74 "default": 12
75 },
76 "titleTypo": {
77 "type": "object",
78 "default": {}
79 },
80 "bgColor": {
81 "type": "string",
82 "default": "#ffffff"
83 },
84 "gridColor": {
85 "type": "string",
86 "default": "#f3f4f6"
87 },
88 "textColor": {
89 "type": "string",
90 "default": "#374151"
91 },
92 "titleColor": {
93 "type": "string",
94 "default": "#111827"
95 },
96 "groups": {
97 "type": "array",
98 "default": [
99 {
100 "label": "Group A",
101 "color": "#6366f1",
102 "values": [
103 45,
104 52,
105 60,
106 63,
107 67,
108 70,
109 72,
110 75,
111 78,
112 80,
113 82,
114 85,
115 88,
116 90,
117 92,
118 95
119 ]
120 },
121 {
122 "label": "Group B",
123 "color": "#10b981",
124 "values": [
125 30,
126 38,
127 50,
128 55,
129 60,
130 65,
131 68,
132 72,
133 74,
134 76,
135 79,
136 82,
137 86,
138 90,
139 95,
140 98
141 ]
142 },
143 {
144 "label": "Group C",
145 "color": "#f59e0b",
146 "values": [
147 55,
148 58,
149 60,
150 62,
151 64,
152 66,
153 68,
154 70,
155 72,
156 74,
157 76,
158 78,
159 80,
160 82,
161 84,
162 86
163 ]
164 },
165 {
166 "label": "Group D",
167 "color": "#ef4444",
168 "values": [
169 20,
170 30,
171 40,
172 55,
173 70,
174 72,
175 74,
176 76,
177 78,
178 80,
179 88,
180 92,
181 96,
182 98,
183 99,
184 100
185 ]
186 }
187 ],
188 "items": {
189 "type": "object"
190 }
191 }
192 }
193 }
194