@theredhead — Frontend Library - v1.0.0
    Preparing search index...

    Interface ChartSeriesData

    A processed data series ready for strategy rendering.

    Each entry groups a set of ChartDataPoints under a named series with a primary colour. Strategies receive an array of these and render all series on the same chart.

    interface ChartSeriesData {
        color: string;
        name: string;
        points: readonly ChartDataPoint[];
    }
    Index

    Properties

    Properties

    color: string

    Primary colour assigned to this series from the palette.

    name: string

    Display name of this series.

    points: readonly ChartDataPoint[]

    Extracted data points for this series.