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

    An individual series within a chart.

    interface AnyChartSeries {
        id: () => string | number;
        name: () => string;
        seriesType: () => string;
        getIterator?: () => AnyChartIterator;
        data?: () => AnyChartDataView;
        getPoint: (index: number) => AnyChartPoint;
        getStat: (key: string) => unknown;
        markers?: () => AnyChartMarkers;
    }
    Index

    Properties

    id: () => string | number
    name: () => string
    seriesType: () => string
    getIterator?: () => AnyChartIterator

    Some AnyChart series expose getIterator() directly, while in production builds the iterator must be obtained via the data view returned by series.data(). The adapter handles both shapes.

    data?: () => AnyChartDataView
    getPoint: (index: number) => AnyChartPoint
    getStat: (key: string) => unknown
    markers?: () => AnyChartMarkers

    Marker configuration accessor.

    Only present on series types that support marker rendering (line, spline, step-line, area variants, scatter). Bar / column / box / candlestick series do not expose this method.