MAIDR Documentation - v3.73.0
    Preparing search index...

    Type Alias D3PanelChartSpec

    D3PanelChartSpec:
        | { chartType: "bar"; config: D3BarConfig }
        | { chartType: "box"; config: D3BoxConfig }
        | { chartType: "candlestick"; config: D3CandlestickConfig }
        | { chartType: "heatmap"; config: D3HeatmapConfig }
        | { chartType: "histogram"; config: D3HistogramConfig }
        | { chartType: "line"; config: D3LineConfig }
        | { chartType: "scatter"; config: D3ScatterConfig }
        | { chartType: "segmented"; config: D3SegmentedConfig }
        | { chartType: "smooth"; config: D3SmoothConfig }

    Discriminated union pairing a chart type with its binder-specific config. This is the per-panel unit consumed by the multi-panel binders and the base of the React adapter's D3AdapterSpec.