MAIDR Documentation - v4.4.0
    Preparing search index...

    Interface PlotlyErrorBar

    The interval drawn around each sample on one axis.

    Plotly resolves visible for every trace that could carry error bars, so a trace without them has visible: false rather than no container at all — which is what makes the flag the reliable test. The magnitudes below are what type selects between; plotly turns them into absolute bounds during calc, and they are only read here when it has not.

    interface PlotlyErrorBar {
        visible?: boolean;
        type?: "data" | "percent" | "constant" | "sqrt";
        symmetric?: boolean;
        array?: number[];
        arrayminus?: number[];
        value?: number;
        valueminus?: number;
    }
    Index

    Properties

    visible?: boolean
    type?: "data" | "percent" | "constant" | "sqrt"
    symmetric?: boolean

    False when the two sides are given separately.

    array?: number[]

    Per-sample magnitudes, for type: 'data'.

    arrayminus?: number[]

    Per-sample magnitudes below the estimate, when not symmetric.

    value?: number

    Single magnitude, for percent and constant.

    valueminus?: number

    Single magnitude below the estimate, when not symmetric.