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 / stacked-area / block.json

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

167 lines 3.0 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/stacked-area",
4 "title": "Stacked Area Chart",
5 "category": "bkbg-charts",
6 "icon": "chart-area",
7 "description": "Area chart with multiple series stacked cumulatively.",
8 "textdomain": "blockenberg",
9 "editorScript": "bkbg-stacked-area-editor",
10 "style": "bkbg-stacked-area-style",
11 "attributes": {
12 "title": {
13 "type": "string",
14 "default": "Monthly Active Users by Platform"
15 },
16 "showTitle": {
17 "type": "boolean",
18 "default": true
19 },
20 "svgWidth": {
21 "type": "number",
22 "default": 700
23 },
24 "svgHeight": {
25 "type": "number",
26 "default": 360
27 },
28 "padTop": {
29 "type": "number",
30 "default": 30
31 },
32 "padLeft": {
33 "type": "number",
34 "default": 60
35 },
36 "padRight": {
37 "type": "number",
38 "default": 30
39 },
40 "padBottom": {
41 "type": "number",
42 "default": 50
43 },
44 "fillOpacity": {
45 "type": "number",
46 "default": 80
47 },
48 "showGridLines": {
49 "type": "boolean",
50 "default": true
51 },
52 "showDots": {
53 "type": "boolean",
54 "default": false
55 },
56 "showLegend": {
57 "type": "boolean",
58 "default": true
59 },
60 "showValues": {
61 "type": "boolean",
62 "default": false
63 },
64 "labelFontSize": {
65 "type": "number",
66 "default": 12
67 },
68 "valueFontSize": {
69 "type": "number",
70 "default": 10
71 },
72 "bgColor": {
73 "type": "string",
74 "default": "#ffffff"
75 },
76 "gridColor": {
77 "type": "string",
78 "default": "#f3f4f6"
79 },
80 "titleColor": {
81 "type": "string",
82 "default": "#111827"
83 },
84 "textColor": {
85 "type": "string",
86 "default": "#374151"
87 },
88 "xLabels": {
89 "type": "array",
90 "default": [
91 "Jan",
92 "Feb",
93 "Mar",
94 "Apr",
95 "May",
96 "Jun",
97 "Jul",
98 "Aug"
99 ],
100 "items": {
101 "type": "string"
102 }
103 },
104 "series": {
105 "type": "array",
106 "default": [
107 {
108 "label": "Mobile",
109 "color": "#6366f1",
110 "values": [
111 120,
112 145,
113 132,
114 168,
115 155,
116 180,
117 192,
118 210
119 ]
120 },
121 {
122 "label": "Desktop",
123 "color": "#10b981",
124 "values": [
125 95,
126 88,
127 102,
128 98,
129 110,
130 105,
131 115,
132 108
133 ]
134 },
135 {
136 "label": "Tablet",
137 "color": "#f59e0b",
138 "values": [
139 28,
140 32,
141 25,
142 38,
143 31,
144 35,
145 40,
146 42
147 ]
148 }
149 ],
150 "items": {
151 "type": "object"
152 }
153 },
154 "labelFontWeight": {
155 "type": "string",
156 "default": "400"
157 },
158 "labelLineHeight": {
159 "type": "number",
160 "default": 1.4
161 },
162 "titleTypo": {
163 "type": "object",
164 "default": {}
165 }
166 }
167 }