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 / heat-map / block.json

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

165 lines 3.8 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/heat-map",
4 "title": "Heat Map",
5 "category": "bkbg-charts",
6 "icon": "grid-view",
7 "description": "Grid heat map where cell colour encodes value intensity — ideal for correlation matrices and activity charts.",
8 "textdomain": "blockenberg",
9 "editorScript": "bkbg-heat-map-editor",
10 "style": "bkbg-heat-map-style",
11 "attributes": {
12 "title": {
13 "type": "string",
14 "default": "Correlation Matrix"
15 },
16 "showTitle": {
17 "type": "boolean",
18 "default": true
19 },
20 "svgWidth": {
21 "type": "number",
22 "default": 600
23 },
24 "cellSize": {
25 "type": "number",
26 "default": 56
27 },
28 "cellGap": {
29 "type": "number",
30 "default": 3
31 },
32 "padLeft": {
33 "type": "number",
34 "default": 110
35 },
36 "padTop": {
37 "type": "number",
38 "default": 80
39 },
40 "padBottom": {
41 "type": "number",
42 "default": 40
43 },
44 "padRight": {
45 "type": "number",
46 "default": 20
47 },
48 "showValues": {
49 "type": "boolean",
50 "default": true
51 },
52 "showLegend": {
53 "type": "boolean",
54 "default": true
55 },
56 "labelFontSize": {
57 "type": "number",
58 "default": 12
59 },
60 "valueFontSize": {
61 "type": "number",
62 "default": 11
63 },
64 "titleFontSize": {
65 "type": "number",
66 "default": 18
67 },
68 "titleFontWeight": {
69 "type": "string",
70 "default": "700"
71 },
72 "titleLineHeight": {
73 "type": "number",
74 "default": 1.2
75 },
76 "colorLow": {
77 "type": "string",
78 "default": "#dbeafe"
79 },
80 "colorMid": {
81 "type": "string",
82 "default": "#93c5fd"
83 },
84 "colorHigh": {
85 "type": "string",
86 "default": "#1d4ed8"
87 },
88 "bgColor": {
89 "type": "string",
90 "default": "#ffffff"
91 },
92 "textColor": {
93 "type": "string",
94 "default": "#374151"
95 },
96 "titleColor": {
97 "type": "string",
98 "default": "#111827"
99 },
100 "rowLabels": {
101 "type": "array",
102 "default": [
103 "Revenue",
104 "Users",
105 "Conversion",
106 "Satisfaction",
107 "Retention"
108 ],
109 "items": {
110 "type": "string"
111 }
112 },
113 "colLabels": {
114 "type": "array",
115 "default": [
116 "Revenue",
117 "Users",
118 "Conversion",
119 "Satisfaction",
120 "Retention"
121 ],
122 "items": {
123 "type": "string"
124 }
125 },
126 "cellValues": {
127 "type": "array",
128 "default": [
129 1.0,
130 0.72,
131 0.58,
132 0.43,
133 0.81,
134 0.72,
135 1.0,
136 0.64,
137 0.37,
138 0.69,
139 0.58,
140 0.64,
141 1.0,
142 0.55,
143 0.48,
144 0.43,
145 0.37,
146 0.55,
147 1.0,
148 0.62,
149 0.81,
150 0.69,
151 0.48,
152 0.62,
153 1.0
154 ],
155 "items": {
156 "type": "number"
157 }
158 },
159 "typoTitle": {
160 "type": "object",
161 "default": {}
162 }
163 }
164 }
165