MAIDR JavaScript API
    Preparing search index...

    The normalised chart state ApexCharts keeps in w.globals.

    This is the honest record of what was drawn: every point format the author may have used is normalised here, and series ApexCharts silently dropped (mixed point formats, for one) show up as empty arrays.

    interface ApexGlobals {
        chartID: string;
        series: ApexValue[] | ApexValue[][];
        seriesX?: (string | number)[][];
        seriesZ?: ApexValue[][];
        seriesNames?: string[];
        labels?: ApexLabel[];
        categoryLabels?: ApexLabel[];
        isXNumeric?: boolean;
        isBarHorizontal?: boolean;
        comboCharts?: boolean;
        seriesCandleO?: ApexValue[][];
        seriesCandleH?: ApexValue[][];
        seriesCandleM?: ApexValue[][];
        seriesCandleL?: ApexValue[][];
        seriesCandleC?: ApexValue[][];
        seriesRangeStart?: ApexValue[][];
        seriesRangeEnd?: ApexValue[][];
        initialSeries?: ApexSeriesOption[];
        collapsedSeries?: ApexCollapsedSeries[];
        collapsedSeriesIndices?: number[];
        seriesYAxisReverseMap?: number[];
        animationEnded?: boolean;
        isDestroyed?: boolean;
        dom?: ApexDom;
    }
    Index

    Properties

    chartID: string

    The chart's id, as used in the wrapper's apexcharts<chartID> id.

    series: ApexValue[] | ApexValue[][]

    Values per series and point ([series][point]). Flat for pie, donut, polar area and radial bar charts, where each slice is a value.

    seriesX?: (string | number)[][]

    X values per series and point, for numeric and datetime x axes.

    seriesZ?: ApexValue[][]

    Bubble sizes per series and point.

    seriesNames?: string[]

    Series names, in w.config.series order.

    labels?: ApexLabel[]

    Category labels, or slice labels for pie-like charts.

    categoryLabels?: ApexLabel[]

    Category labels for line and area charts on a category axis.

    isXNumeric?: boolean

    Whether the x axis is numeric (true for line charts on categories too).

    isBarHorizontal?: boolean

    Whether bars (and box plots, range bars) are drawn horizontally.

    comboCharts?: boolean

    Whether series of different types share the chart.

    seriesCandleO?: ApexValue[][]

    Candlestick open, or box plot minimum.

    seriesCandleH?: ApexValue[][]

    Candlestick high, or box plot first quartile.

    seriesCandleM?: ApexValue[][]

    Box plot median.

    seriesCandleL?: ApexValue[][]

    Candlestick low, or box plot third quartile.

    seriesCandleC?: ApexValue[][]

    Candlestick close, or box plot maximum.

    seriesRangeStart?: ApexValue[][]

    Range bar starts per series and point.

    seriesRangeEnd?: ApexValue[][]

    Range bar ends per series and point.

    initialSeries?: ApexSeriesOption[]

    The series as first rendered; survives a legend collapse.

    collapsedSeries?: ApexCollapsedSeries[]

    Series hidden through the legend.

    collapsedSeriesIndices?: number[]

    Indices of the series hidden through the legend.

    seriesYAxisReverseMap?: number[]

    The y axis each series is drawn against, by series index.

    animationEnded?: boolean

    Whether the entry animation (or the last update's) has finished.

    isDestroyed?: boolean

    Set once chart.destroy() has run.

    dom?: ApexDom

    DOM references ApexCharts keeps for the chart (older location).