MAIDR Documentation - v3.65.0
    Preparing search index...
    D3AdapterSpec:
        | { 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 describing which binder to run and the config to pass it.

    The chartType field narrows the associated config to the correct binder-specific type. This is what useD3Adapter and <MaidrD3> consume.