PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
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 / polar-chart / block.json

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

95 lines 2.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/polar-chart",
5 "title": "Polar Area Chart",
6 "category": "bkbg-charts",
7 "icon": "chart-pie",
8 "description": "Beautiful polar area chart powered by Chart.js.",
9 "keywords": [
10 "chart",
11 "polar",
12 "data",
13 "visualization"
14 ],
15 "textdomain": "blockenberg",
16 "editorScript": "bkbg-polar-chart-editor",
17 "editorStyle": "bkbg-polar-chart-style",
18 "style": "bkbg-polar-chart-style",
19 "viewScript": "bkbg-polar-chart-frontend",
20 "supports": {
21 "html": false,
22 "anchor": true,
23 "className": true,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "chartTitle": {
31 "type": "string",
32 "default": "Polar Area Chart"
33 },
34 "showTitle": {
35 "type": "boolean",
36 "default": true
37 },
38 "labels": {
39 "type": "string",
40 "default": "Category A,Category B,Category C,Category D,Category E"
41 },
42 "values": {
43 "type": "string",
44 "default": "30,25,20,15,10"
45 },
46 "colors": {
47 "type": "string",
48 "default": "#6c3fb5,#ec4899,#f59e0b,#10b981,#3b82f6"
49 },
50 "fillAlpha": {
51 "type": "number",
52 "default": 75
53 },
54 "size": {
55 "type": "number",
56 "default": 400
57 },
58 "showLegend": {
59 "type": "boolean",
60 "default": true
61 },
62 "legendPos": {
63 "type": "string",
64 "default": "bottom"
65 },
66 "bgColor": {
67 "type": "string",
68 "default": "#ffffff"
69 },
70 "borderRadius": {
71 "type": "number",
72 "default": 12
73 },
74 "textAlign": {
75 "type": "string",
76 "default": "center"
77 },
78 "titleFontSize": {
79 "type": "number",
80 "default": 14
81 },
82 "legendFontSize": {
83 "type": "number",
84 "default": 12
85 },
86 "titleFontWeight": {
87 "type": "string",
88 "default": "700"
89 },
90 "legendFontWeight": {
91 "type": "string",
92 "default": "400"
93 }
94 }
95 }