{ "apiVersion": 3, "name": "blockenberg/scatter-plot", "title": "Scatter Plot", "category": "bkbg-charts", "icon": "chart-area", "description": "XY scatter plot with multiple labelled series and optional trendline display.", "textdomain": "blockenberg", "editorScript": "bkbg-scatter-plot-editor", "style": "bkbg-scatter-plot-style", "attributes": { "title": { "type": "string", "default": "Performance vs Satisfaction" }, "showTitle": { "type": "boolean", "default": true }, "svgWidth": { "type": "number", "default": 680 }, "svgHeight": { "type": "number", "default": 380 }, "padTop": { "type": "number", "default": 30 }, "padLeft": { "type": "number", "default": 60 }, "padRight": { "type": "number", "default": 30 }, "padBottom": { "type": "number", "default": 60 }, "dotRadius": { "type": "number", "default": 6 }, "showGrid": { "type": "boolean", "default": true }, "showLegend": { "type": "boolean", "default": true }, "showLabels": { "type": "boolean", "default": false }, "xAxisLabel": { "type": "string", "default": "Performance Score" }, "yAxisLabel": { "type": "string", "default": "Satisfaction Index" }, "xMin": { "type": "number", "default": 0 }, "xMax": { "type": "number", "default": 100 }, "yMin": { "type": "number", "default": 0 }, "yMax": { "type": "number", "default": 100 }, "labelFontSize": { "type": "number", "default": 12 }, "labelFontWeight": { "type": "number", "default": 400 }, "bgColor": { "type": "string", "default": "#ffffff" }, "gridColor": { "type": "string", "default": "#f3f4f6" }, "textColor": { "type": "string", "default": "#374151" }, "titleColor": { "type": "string", "default": "#111827" }, "series": { "type": "array", "default": [ { "label": "Team A", "color": "#6366f1", "points": [ { "x": 72, "y": 68, "label": "Alice" }, { "x": 85, "y": 80, "label": "Bob" }, { "x": 61, "y": 74, "label": "Carol" }, { "x": 90, "y": 88, "label": "Dave" }, { "x": 78, "y": 72, "label": "Eve" } ] }, { "label": "Team B", "color": "#10b981", "points": [ { "x": 45, "y": 52, "label": "Frank" }, { "x": 58, "y": 64, "label": "Grace" }, { "x": 39, "y": 45, "label": "Henry" }, { "x": 67, "y": 70, "label": "Iris" }, { "x": 53, "y": 58, "label": "Jack" } ] }, { "label": "Team C", "color": "#f59e0b", "points": [ { "x": 20, "y": 35, "label": "Kim" }, { "x": 32, "y": 28, "label": "Leo" }, { "x": 15, "y": 42, "label": "Mia" }, { "x": 28, "y": 31, "label": "Ned" }, { "x": 40, "y": 38, "label": "Ora" } ] } ], "items": { "type": "object" } }, "titleTypo": { "type": "object", "default": {} } } }