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

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

172 lines 4.3 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/bump-chart",
5 "title": "Bump Chart",
6 "category": "bkbg-charts",
7 "icon": "chart-line",
8 "description": "Ranking chart that shows how positions change over time — each series is a curved line with rank labels at each column.",
9 "attributes": {
10 "title": {
11 "type": "string",
12 "default": "App Store Rankings Over 6 Weeks"
13 },
14 "showTitle": {
15 "type": "boolean",
16 "default": true
17 },
18 "svgWidth": {
19 "type": "integer",
20 "default": 720
21 },
22 "svgHeight": {
23 "type": "integer",
24 "default": 380
25 },
26 "padTop": {
27 "type": "integer",
28 "default": 50
29 },
30 "padLeft": {
31 "type": "integer",
32 "default": 120
33 },
34 "padRight": {
35 "type": "integer",
36 "default": 120
37 },
38 "lineThickness": {
39 "type": "integer",
40 "default": 3
41 },
42 "dotRadius": {
43 "type": "integer",
44 "default": 18
45 },
46 "showRankLabels": {
47 "type": "boolean",
48 "default": true
49 },
50 "showColumnLabels": {
51 "type": "boolean",
52 "default": true
53 },
54 "showEndLabels": {
55 "type": "boolean",
56 "default": true
57 },
58 "labelFontSize": {
59 "type": "integer",
60 "default": 13
61 },
62 "rankFontSize": {
63 "type": "integer",
64 "default": 12
65 },
66 "bgColor": {
67 "type": "string",
68 "default": "#ffffff"
69 },
70 "gridColor": {
71 "type": "string",
72 "default": "#f3f4f6"
73 },
74 "titleColor": {
75 "type": "string",
76 "default": "#111827"
77 },
78 "textColor": {
79 "type": "string",
80 "default": "#374151"
81 },
82 "xLabels": {
83 "type": "array",
84 "default": [
85 "Week 1",
86 "Week 2",
87 "Week 3",
88 "Week 4",
89 "Week 5",
90 "Week 6"
91 ]
92 },
93 "series": {
94 "type": "array",
95 "default": [
96 {
97 "label": "Notion",
98 "color": "#1a1a1a",
99 "ranks": [
100 3,
101 2,
102 1,
103 1,
104 2,
105 1
106 ]
107 },
108 {
109 "label": "Obsidian",
110 "color": "#6366f1",
111 "ranks": [
112 1,
113 1,
114 2,
115 3,
116 1,
117 2
118 ]
119 },
120 {
121 "label": "Craft",
122 "color": "#10b981",
123 "ranks": [
124 2,
125 3,
126 3,
127 2,
128 3,
129 3
130 ]
131 },
132 {
133 "label": "Logseq",
134 "color": "#f59e0b",
135 "ranks": [
136 4,
137 4,
138 4,
139 4,
140 4,
141 4
142 ]
143 },
144 {
145 "label": "Bear",
146 "color": "#ef4444",
147 "ranks": [
148 5,
149 5,
150 5,
151 5,
152 5,
153 5
154 ]
155 }
156 ]
157 },
158 "typoTitle": {
159 "type": "object",
160 "default": {}
161 }
162 },
163 "supports": {
164 "align": [
165 "wide",
166 "full"
167 ]
168 },
169 "editorScript": "bkbg-bump-chart-editor",
170 "style": "bkbg-bump-chart-style"
171 }
172