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

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

152 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/lollipop-chart",
5 "version": "1.0.0",
6 "title": "Lollipop Chart",
7 "category": "bkbg-charts",
8 "icon": "chart-bar",
9 "description": "Elegant horizontal lollipop chart — thin stems with value circles at the end. A clean alternative to bar charts for rankings, scores, and comparisons.",
10 "keywords": [
11 "lollipop",
12 "chart",
13 "dot",
14 "stem",
15 "ranking",
16 "comparison",
17 "visualization"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-lollipop-chart-editor",
21 "style": "bkbg-lollipop-chart-style",
22 "supports": {
23 "html": false,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "title": {
31 "type": "string",
32 "default": "Team Performance Scores"
33 },
34 "showTitle": {
35 "type": "boolean",
36 "default": true
37 },
38 "svgWidth": {
39 "type": "number",
40 "default": 700
41 },
42 "rowHeight": {
43 "type": "number",
44 "default": 44
45 },
46 "padTop": {
47 "type": "number",
48 "default": 20
49 },
50 "padLeft": {
51 "type": "number",
52 "default": 160
53 },
54 "padRight": {
55 "type": "number",
56 "default": 56
57 },
58 "dotRadius": {
59 "type": "number",
60 "default": 14
61 },
62 "stemThickness": {
63 "type": "number",
64 "default": 2
65 },
66 "labelFontSize": {
67 "type": "number",
68 "default": 13
69 },
70 "valueFontSize": {
71 "type": "number",
72 "default": 12
73 },
74 "sortDesc": {
75 "type": "boolean",
76 "default": true
77 },
78 "showGridLines": {
79 "type": "boolean",
80 "default": true
81 },
82 "showValues": {
83 "type": "boolean",
84 "default": true
85 },
86 "bgColor": {
87 "type": "string",
88 "default": "#ffffff"
89 },
90 "gridColor": {
91 "type": "string",
92 "default": "#f3f4f6"
93 },
94 "stemColor": {
95 "type": "string",
96 "default": "#e5e7eb"
97 },
98 "titleColor": {
99 "type": "string",
100 "default": "#111827"
101 },
102 "labelColor": {
103 "type": "string",
104 "default": "#374151"
105 },
106 "titleTypo": {
107 "type": "object",
108 "default": {}
109 },
110 "items": {
111 "type": "array",
112 "default": [
113 {
114 "label": "Alice Chen",
115 "value": 94,
116 "color": "#4f46e5"
117 },
118 {
119 "label": "Bob Martinez",
120 "value": 88,
121 "color": "#0891b2"
122 },
123 {
124 "label": "Carol Nguyen",
125 "value": 82,
126 "color": "#059669"
127 },
128 {
129 "label": "David Kim",
130 "value": 79,
131 "color": "#d97706"
132 },
133 {
134 "label": "Emma Wilson",
135 "value": 75,
136 "color": "#dc2626"
137 },
138 {
139 "label": "Frank Lee",
140 "value": 68,
141 "color": "#7c3aed"
142 },
143 {
144 "label": "Grace Patel",
145 "value": 61,
146 "color": "#ea580c"
147 }
148 ]
149 }
150 }
151 }
152