stream-charts
    Preparing search index...

    A spike series holding an array of spike (time, value) datum, the name and supplemental information needed by the RasterChart

    interface BaseSeries<D> {
        data: D[];
        isEmpty: () => boolean;
        last: () => Result<D, string>;
        length: () => number;
        name: string;
    }

    Type Parameters

    • D
    Index

    Properties

    data: D[]
    isEmpty: () => boolean
    last: () => Result<D, string>
    length: () => number
    name: string