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

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

109 lines 2.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/bar-chart",
5 "title": "Bar Chart",
6 "category": "bkbg-charts",
7 "icon": "chart-bar",
8 "description": "Vertical or horizontal bar chart with multiple datasets using Chart.js (CDN). Supports stacked, border radius, and custom colors.",
9 "keywords": [
10 "chart",
11 "bar",
12 "graph",
13 "data",
14 "visualization",
15 "histogram"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-bar-chart-editor",
19 "editorStyle": "bkbg-bar-chart-style",
20 "style": "bkbg-bar-chart-style",
21 "viewScript": "bkbg-bar-chart-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "labels": {
33 "type": "string",
34 "default": "Q1,Q2,Q3,Q4"
35 },
36 "datasets": {
37 "type": "array",
38 "default": [
39 {
40 "label": "2023",
41 "data": "45,72,60,88",
42 "color": "#6c3fb5"
43 },
44 {
45 "label": "2024",
46 "data": "52,80,71,95",
47 "color": "#e040fb"
48 }
49 ]
50 },
51 "orientation": {
52 "type": "string",
53 "default": "vertical"
54 },
55 "stacked": {
56 "type": "boolean",
57 "default": false
58 },
59 "barRadius": {
60 "type": "number",
61 "default": 6
62 },
63 "height": {
64 "type": "number",
65 "default": 340
66 },
67 "showGrid": {
68 "type": "boolean",
69 "default": true
70 },
71 "showLegend": {
72 "type": "boolean",
73 "default": true
74 },
75 "legendPos": {
76 "type": "string",
77 "default": "top"
78 },
79 "bgColor": {
80 "type": "string",
81 "default": "#ffffff"
82 },
83 "borderRadius": {
84 "type": "number",
85 "default": 12
86 },
87 "title": {
88 "type": "string",
89 "default": ""
90 },
91 "chartTitleFontSize": {
92 "type": "number",
93 "default": 18
94 },
95 "legendFontSize": {
96 "type": "number",
97 "default": 12
98 },
99 "axisLabelFontSize": {
100 "type": "number",
101 "default": 11
102 },
103 "titleTypo": {
104 "type": "object",
105 "default": {}
106 }
107 }
108 }
109