MAIDR JavaScript API
    Preparing search index...

    Interface EChartsSeriesModel

    One series of a rendered chart.

    interface EChartsSeriesModel {
        subType: string;
        name: string;
        getData: () => EChartsList;
        get: (key: string) => unknown;
    }
    Index

    Properties

    Properties

    subType: string

    The declared series type -- 'bar', 'line', 'scatter', …

    name: string

    The series' resolved name.

    ECharts invents one ('series 0', with a NUL separator) when the author supplied none, so a name is only worth emitting when the author wrote it; see authoredName in the converters.

    getData: () => EChartsList

    The series' data list.

    get: (key: string) => unknown

    Read one of the series' resolved options.