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

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

146 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/diverging-bar",
5 "title": "Diverging Bar Chart",
6 "category": "bkbg-charts",
7 "icon": "chart-bar",
8 "description": "Horizontal bars extending left (negative) and right (positive) from a shared centre baseline — ideal for survey data, sentiment, and profit/loss comparisons.",
9 "attributes": {
10 "title": {
11 "type": "string",
12 "default": "Survey Results: Agreement Scale"
13 },
14 "showTitle": {
15 "type": "boolean",
16 "default": true
17 },
18 "showValues": {
19 "type": "boolean",
20 "default": true
21 },
22 "showGridLines": {
23 "type": "boolean",
24 "default": true
25 },
26 "showZeroLine": {
27 "type": "boolean",
28 "default": true
29 },
30 "svgWidth": {
31 "type": "integer",
32 "default": 700
33 },
34 "rowHeight": {
35 "type": "integer",
36 "default": 44
37 },
38 "padTop": {
39 "type": "integer",
40 "default": 30
41 },
42 "padLeft": {
43 "type": "integer",
44 "default": 160
45 },
46 "padRight": {
47 "type": "integer",
48 "default": 30
49 },
50 "barHeight": {
51 "type": "integer",
52 "default": 24
53 },
54 "labelFontSize": {
55 "type": "integer",
56 "default": 13
57 },
58 "labelFontWeight": {
59 "type": "string",
60 "default": "400"
61 },
62 "valueFontSize": {
63 "type": "integer",
64 "default": 11
65 },
66 "valueFontWeight": {
67 "type": "string",
68 "default": "400"
69 },
70 "titleFontSize": {
71 "type": "integer",
72 "default": 18
73 },
74 "titleFontWeight": {
75 "type": "string",
76 "default": "700"
77 },
78 "posColor": {
79 "type": "string",
80 "default": "#4f46e5"
81 },
82 "negColor": {
83 "type": "string",
84 "default": "#dc2626"
85 },
86 "bgColor": {
87 "type": "string",
88 "default": "#ffffff"
89 },
90 "gridColor": {
91 "type": "string",
92 "default": "#f3f4f6"
93 },
94 "titleColor": {
95 "type": "string",
96 "default": "#111827"
97 },
98 "labelColor": {
99 "type": "string",
100 "default": "#374151"
101 },
102 "typoTitle": {
103 "type": "object",
104 "default": {}
105 },
106 "items": {
107 "type": "array",
108 "default": [
109 {
110 "label": "Strongly Agree",
111 "positive": 42,
112 "negative": 8
113 },
114 {
115 "label": "Agree",
116 "positive": 31,
117 "negative": 12
118 },
119 {
120 "label": "Neutral",
121 "positive": 15,
122 "negative": 15
123 },
124 {
125 "label": "Disagree",
126 "positive": 8,
127 "negative": 28
128 },
129 {
130 "label": "Strongly Disagree",
131 "positive": 4,
132 "negative": 36
133 }
134 ]
135 }
136 },
137 "supports": {
138 "align": [
139 "wide",
140 "full"
141 ]
142 },
143 "editorScript": "bkbg-diverging-bar-editor",
144 "style": "bkbg-diverging-bar-style"
145 }
146