stream-charts
    Preparing search index...

    The spike-chart data produced by the rxjs observable that is pushed to a streaming chart

    interface TimeSeriesChartData {
        currentTime?: number;
        maxTime: number;
        maxTimes: Map<string, number>;
        newPoints: Map<string, Datum[]>;
        seriesNames: Set<string>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    currentTime?: number

    The current time (for example, when used with cadence)

    maxTime: number

    The max (latest) time for the data in the newPoints map

    maxTimes: Map<string, number>

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

    newPoints: Map<string, Datum[]>

    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>