stream-charts
    Preparing search index...

    Holds the style information for a series in a chart

    interface BarSeriesStyle {
        color: string;
        highlightColor: string;
        margin?: number;
        meanValueLine: LineStyle;
        minMaxBar: BarStyle;
        valueLine: LineStyle;
        windowedMeanValueLine: LineStyle;
        windowedMinMaxBar: BarStyle;
    }

    Hierarchy (View Summary)

    Index

    Properties

    color: string
    highlightColor: string
    margin?: number
    meanValueLine: LineStyle

    The line style for the mean value.

    minMaxBar: BarStyle

    The bar style for the lifetime min/max range bar. The style is for the width, fill, and stroke.

    valueLine: LineStyle

    The line style for the current value.

    windowedMeanValueLine: LineStyle

    The line style for the windowed-mean value.

    windowedMinMaxBar: BarStyle

    The bar style for the windowed min/max range bar. The style is for the width, fill, and stroke.