Reincharts
    Preparing search index...

    Interface BollingerSeriesProps

    interface BollingerSeriesProps {
        className?: string;
        fillStyle?: string;
        strokeStyle?: { bottom: string; middle: string; top: string };
        yAccessor?: (data: any) => { bottom: number; middle: number; top: number };
    }
    Index

    Properties

    className?: string

    CSS class name for the series.

    fillStyle?: string

    Fill color for the Bollinger Band area.

    strokeStyle?: { bottom: string; middle: string; top: string }

    Stroke colors for the Bollinger Band lines (top, middle, bottom).

    yAccessor?: (data: any) => { bottom: number; middle: number; top: number }

    Data accessor function for Bollinger Band values.