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 IterateChartData {
        maxIterate: IterateDatum;
        maxIterates: Map<string, IterateDatum>;
        minIterate: IterateDatum;
        minIterates: Map<string, IterateDatum>;
        newPoints: Map<string, IterateDatum[]>;
        seriesNames: Set<string>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    maxIterate: IterateDatum

    The max values for (time, iterate n, and iterate n+1) for the data in the newPoints map

    maxIterates: Map<string, IterateDatum>

    Holds the association of the series name to the current max time for that series

    minIterate: IterateDatum

    The min values for (time, iterate n, and iterate n+1) for the data in the newPoints map

    minIterates: Map<string, IterateDatum>

    Holds the association of the series name to the current min time for that series

    newPoints: Map<string, IterateDatum[]>

    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>