MAIDR JavaScript API
    Preparing search index...

    A series handle, as returned by chart.addSeries(...).

    interface LwcSeries {
        seriesType: () => string;
        data: () => readonly LwcDataItem[];
        options: () => LwcSeriesOptions;
        priceToCoordinate: (price: number) => number | null;
        subscribeDataChanged: (handler: (scope: "update" | "full") => void) => void;
        unsubscribeDataChanged: (
            handler: (scope: "update" | "full") => void,
        ) => void;
    }
    Index

    Properties

    seriesType: () => string
    data: () => readonly LwcDataItem[]
    options: () => LwcSeriesOptions
    priceToCoordinate: (price: number) => number | null
    subscribeDataChanged: (handler: (scope: "update" | "full") => void) => void
    unsubscribeDataChanged: (handler: (scope: "update" | "full") => void) => void