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

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

155 lines 3.8 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/slope-chart",
5 "title": "Slope Chart",
6 "category": "bkbg-charts",
7 "icon": "chart-line",
8 "description": "A two-column slope graph showing before/after change for multiple items — lines are automatically colored by direction (up, down, or unchanged).",
9 "attributes": {
10 "title": {
11 "type": "string",
12 "default": "Market Share: 2020 vs 2024"
13 },
14 "showTitle": {
15 "type": "boolean",
16 "default": true
17 },
18 "labelA": {
19 "type": "string",
20 "default": "2020"
21 },
22 "labelB": {
23 "type": "string",
24 "default": "2024"
25 },
26 "svgWidth": {
27 "type": "integer",
28 "default": 520
29 },
30 "svgHeight": {
31 "type": "integer",
32 "default": 420
33 },
34 "padTop": {
35 "type": "integer",
36 "default": 48
37 },
38 "padLeft": {
39 "type": "integer",
40 "default": 150
41 },
42 "padRight": {
43 "type": "integer",
44 "default": 150
45 },
46 "padBottom": {
47 "type": "integer",
48 "default": 20
49 },
50 "lineThickness": {
51 "type": "integer",
52 "default": 2
53 },
54 "dotRadius": {
55 "type": "integer",
56 "default": 6
57 },
58 "showValues": {
59 "type": "boolean",
60 "default": true
61 },
62 "showDiff": {
63 "type": "boolean",
64 "default": false
65 },
66 "labelFontSize": {
67 "type": "integer",
68 "default": 13
69 },
70 "labelFontWeight": {
71 "type": "number",
72 "default": 400
73 },
74 "valueFontSize": {
75 "type": "integer",
76 "default": 12
77 },
78 "valueFontWeight": {
79 "type": "number",
80 "default": 700
81 },
82 "posColor": {
83 "type": "string",
84 "default": "#10b981"
85 },
86 "negColor": {
87 "type": "string",
88 "default": "#ef4444"
89 },
90 "neuColor": {
91 "type": "string",
92 "default": "#9ca3af"
93 },
94 "bgColor": {
95 "type": "string",
96 "default": "#ffffff"
97 },
98 "titleColor": {
99 "type": "string",
100 "default": "#111827"
101 },
102 "textColor": {
103 "type": "string",
104 "default": "#374151"
105 },
106 "items": {
107 "type": "array",
108 "default": [
109 {
110 "label": "Chrome",
111 "a": 63.4,
112 "b": 65.1
113 },
114 {
115 "label": "Safari",
116 "a": 19.2,
117 "b": 18.8
118 },
119 {
120 "label": "Firefox",
121 "a": 8.1,
122 "b": 4.0
123 },
124 {
125 "label": "Edge",
126 "a": 4.3,
127 "b": 5.5
128 },
129 {
130 "label": "Samsung",
131 "a": 2.8,
132 "b": 4.3
133 },
134 {
135 "label": "Opera",
136 "a": 2.2,
137 "b": 2.3
138 }
139 ]
140 },
141 "titleTypo": {
142 "type": "object",
143 "default": {}
144 }
145 },
146 "supports": {
147 "align": [
148 "wide",
149 "full"
150 ]
151 },
152 "editorScript": "bkbg-slope-chart-editor",
153 "style": "bkbg-slope-chart-style"
154 }
155