| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "blockenberg/treemap-chart", |
| 5 |
"version": "1.0.0", |
| 6 |
"title": "Treemap Chart", |
| 7 |
"category": "bkbg-charts", |
| 8 |
"icon": "grid-view", |
| 9 |
"description": "Hierarchical data visualized as proportional nested rectangles. Great for market share, budget breakdowns, and category comparisons.", |
| 10 |
"keywords": [ |
| 11 |
"treemap", |
| 12 |
"chart", |
| 13 |
"hierarchy", |
| 14 |
"proportion", |
| 15 |
"data", |
| 16 |
"visualization" |
| 17 |
], |
| 18 |
"textdomain": "blockenberg", |
| 19 |
"editorScript": "bkbg-treemap-chart-editor", |
| 20 |
"style": "bkbg-treemap-chart-style", |
| 21 |
"supports": { |
| 22 |
"html": false, |
| 23 |
"align": [ |
| 24 |
"wide", |
| 25 |
"full" |
| 26 |
] |
| 27 |
}, |
| 28 |
"attributes": { |
| 29 |
"title": { |
| 30 |
"type": "string", |
| 31 |
"default": "Market Share" |
| 32 |
}, |
| 33 |
"showTitle": { |
| 34 |
"type": "boolean", |
| 35 |
"default": true |
| 36 |
}, |
| 37 |
"svgWidth": { |
| 38 |
"type": "number", |
| 39 |
"default": 800 |
| 40 |
}, |
| 41 |
"svgHeight": { |
| 42 |
"type": "number", |
| 43 |
"default": 480 |
| 44 |
}, |
| 45 |
"gap": { |
| 46 |
"type": "number", |
| 47 |
"default": 3 |
| 48 |
}, |
| 49 |
"cornerRadius": { |
| 50 |
"type": "number", |
| 51 |
"default": 4 |
| 52 |
}, |
| 53 |
"showLabels": { |
| 54 |
"type": "boolean", |
| 55 |
"default": true |
| 56 |
}, |
| 57 |
"showValues": { |
| 58 |
"type": "boolean", |
| 59 |
"default": true |
| 60 |
}, |
| 61 |
"showPercent": { |
| 62 |
"type": "boolean", |
| 63 |
"default": false |
| 64 |
}, |
| 65 |
"labelFontSize": { |
| 66 |
"type": "number", |
| 67 |
"default": 14 |
| 68 |
}, |
| 69 |
"valueFontSize": { |
| 70 |
"type": "number", |
| 71 |
"default": 12 |
| 72 |
}, |
| 73 |
"bgColor": { |
| 74 |
"type": "string", |
| 75 |
"default": "#ffffff" |
| 76 |
}, |
| 77 |
"titleColor": { |
| 78 |
"type": "string", |
| 79 |
"default": "#111827" |
| 80 |
}, |
| 81 |
"titleTypo": { |
| 82 |
"type": "object", |
| 83 |
"default": {} |
| 84 |
}, |
| 85 |
"items": { |
| 86 |
"type": "array", |
| 87 |
"default": [ |
| 88 |
{ |
| 89 |
"label": "Product A", |
| 90 |
"value": 38, |
| 91 |
"color": "#4f46e5" |
| 92 |
}, |
| 93 |
{ |
| 94 |
"label": "Product B", |
| 95 |
"value": 22, |
| 96 |
"color": "#0891b2" |
| 97 |
}, |
| 98 |
{ |
| 99 |
"label": "Product C", |
| 100 |
"value": 16, |
| 101 |
"color": "#059669" |
| 102 |
}, |
| 103 |
{ |
| 104 |
"label": "Product D", |
| 105 |
"value": 11, |
| 106 |
"color": "#d97706" |
| 107 |
}, |
| 108 |
{ |
| 109 |
"label": "Product E", |
| 110 |
"value": 7, |
| 111 |
"color": "#dc2626" |
| 112 |
}, |
| 113 |
{ |
| 114 |
"label": "Product F", |
| 115 |
"value": 4, |
| 116 |
"color": "#7c3aed" |
| 117 |
}, |
| 118 |
{ |
| 119 |
"label": "Other", |
| 120 |
"value": 2, |
| 121 |
"color": "#6b7280" |
| 122 |
} |
| 123 |
] |
| 124 |
} |
| 125 |
} |
| 126 |
} |
| 127 |
|