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

    Interface ChartDataPoint

    A single data point extracted from the source data, ready for rendering.

    interface ChartDataPoint {
        color: string;
        label: string;
        value: number;
    }
    Index

    Properties

    Properties

    color: string

    Color assigned from the palette.

    label: string

    Display label for this data point.

    value: number

    Numeric value for this data point.