stream-charts
    Preparing search index...

    Intended base interface for chart data. All chart data need to hold a Set of series names.

    • TimeSeriesChartData
    • IterateChartData
    • OrdinalChartData
    interface OrdinalChartData {
        newPoints: Map<string, OrdinalDatum[]>;
        seriesNames: Set<string>;
        stats: OrdinalStats;
    }

    Hierarchy (View Summary)

    Index

    Properties

    newPoints: Map<string, OrdinalDatum[]>

    Map holding the name of the series (the time-series identifier) and the associated data points for that time-series (map(series_name -> array(datum)))

    seriesNames: Set<string>

    Statistics for the chart. Holds the overall minimum and maximum (across all the series), and statistics for each individual series.