# blockenberg/2.0.7/blocks/candlestick-chart/block.json

Blockenberg — 600+ Advanced Gutenberg Blocks &amp; AI Agent for WordPress Block Editor, version 2.0.7. 182 lines.

- Page: https://pluginprobe.com/plugins/blockenberg/2.0.7/code/blocks/candlestick-chart/block.json
- Raw: https://pluginprobe.com/plugins/blockenberg/2.0.7/raw/blocks/candlestick-chart/block.json
- Modified: 2026-03-06T12:32:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/blockenberg/2.0.7/code/blocks/candlestick-chart/block.json#L10-L20`.

```json
{
    "apiVersion": 3,
    "name": "blockenberg/candlestick-chart",
    "title": "Candlestick Chart",
    "category": "bkbg-charts",
    "icon": "chart-line",
    "description": "OHLC candlestick chart for financial data — shows open, high, low, and close values per period.",
    "textdomain": "blockenberg",
    "editorScript": "bkbg-candlestick-chart-editor",
    "style": "bkbg-candlestick-chart-style",
    "attributes": {
        "title": {
            "type": "string",
            "default": "Stock Price — Q4 2024"
        },
        "showTitle": {
            "type": "boolean",
            "default": true
        },
        "svgWidth": {
            "type": "number",
            "default": 700
        },
        "svgHeight": {
            "type": "number",
            "default": 380
        },
        "padTop": {
            "type": "number",
            "default": 30
        },
        "padLeft": {
            "type": "number",
            "default": 70
        },
        "padRight": {
            "type": "number",
            "default": 30
        },
        "padBottom": {
            "type": "number",
            "default": 54
        },
        "candleWidth": {
            "type": "number",
            "default": 14
        },
        "wickWidth": {
            "type": "number",
            "default": 1
        },
        "showGrid": {
            "type": "boolean",
            "default": true
        },
        "showVolume": {
            "type": "boolean",
            "default": true
        },
        "labelFontSize": {
            "type": "number",
            "default": 11
        },
        "bullColor": {
            "type": "string",
            "default": "#10b981"
        },
        "bearColor": {
            "type": "string",
            "default": "#ef4444"
        },
        "bgColor": {
            "type": "string",
            "default": "#ffffff"
        },
        "gridColor": {
            "type": "string",
            "default": "#f3f4f6"
        },
        "textColor": {
            "type": "string",
            "default": "#374151"
        },
        "titleColor": {
            "type": "string",
            "default": "#111827"
        },
        "candles": {
            "type": "array",
            "default": [
                {
                    "label": "Oct 1",
                    "open": 142.0,
                    "high": 148.5,
                    "low": 140.2,
                    "close": 146.8,
                    "volume": 320
                },
                {
                    "label": "Oct 8",
                    "open": 146.8,
                    "high": 152.0,
                    "low": 145.1,
                    "close": 149.3,
                    "volume": 410
                },
                {
                    "label": "Oct 15",
                    "open": 149.3,
                    "high": 150.8,
                    "low": 143.0,
                    "close": 144.5,
                    "volume": 280
                },
                {
                    "label": "Oct 22",
                    "open": 144.5,
                    "high": 146.0,
                    "low": 138.4,
                    "close": 139.2,
                    "volume": 520
                },
                {
                    "label": "Oct 29",
                    "open": 139.2,
                    "high": 145.5,
                    "low": 137.0,
                    "close": 143.8,
                    "volume": 380
                },
                {
                    "label": "Nov 5",
                    "open": 143.8,
                    "high": 155.0,
                    "low": 142.5,
                    "close": 153.2,
                    "volume": 490
                },
                {
                    "label": "Nov 12",
                    "open": 153.2,
                    "high": 158.4,
                    "low": 151.0,
                    "close": 156.7,
                    "volume": 430
                },
                {
                    "label": "Nov 19",
                    "open": 156.7,
                    "high": 159.0,
                    "low": 150.2,
                    "close": 151.5,
                    "volume": 360
                },
                {
                    "label": "Nov 26",
                    "open": 151.5,
                    "high": 157.8,
                    "low": 149.3,
                    "close": 155.9,
                    "volume": 295
                },
                {
                    "label": "Dec 3",
                    "open": 155.9,
                    "high": 164.2,
                    "low": 154.5,
                    "close": 162.3,
                    "volume": 570
                }
            ],
            "items": {
                "type": "object"
            }
        },
        "typoTitle": {
            "type": "object",
            "default": {}
        }
    }
}

```
