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

    Enumeration TraceType

    Enumeration of supported plot trace types. Use these values for the type field in MaidrLayer.

    import { TraceType } from 'maidr/react';
    const layer = { id: '0', type: TraceType.BAR, ... };
    // Or use the string value directly:
    const layer2 = { id: '0', type: 'bar', ... };
    Index

    Enumeration Members

    BAR: "bar"
    BOX: "box"
    CANDLESTICK: "candlestick"
    DODGED: "dodged_bar"
    HEATMAP: "heat"
    HISTOGRAM: "hist"
    LINE: "line"
    NORMALIZED: "stacked_normalized_bar"
    SCATTER: "point"
    SMOOTH: "smooth"
    STACKED: "stacked_bar"
    VIOLIN_BOX: "violin_box"
    VIOLIN_KDE: "violin_kde"