Reincharts
    Preparing search index...

    Interface BollingerBandTooltipProps

    interface BollingerBandTooltipProps {
        className?: string;
        displayFormat: (value: number) => string;
        displayInit?: string;
        displayValuesFor?: (
            props: BollingerBandTooltipProps,
            moreProps: any,
        ) => any;
        fontFamily?: string;
        fontSize?: number;
        fontWeight?: number;
        labelFill?: string;
        labelFontWeight?: number;
        onClick?: (event: MouseEvent) => void;
        options: {
            movingAverageType: string;
            multiplier: number;
            sourcePath: string;
            windowSize: number;
        };
        origin?: | [number, number]
        | ((width: number, height: number) => [number, number]);
        textFill?: string;
        yAccessor?: (data: any) => { bottom: number; middle: number; top: number };
    }
    Index

    Properties

    className?: string

    CSS class name for styling the tooltip.

    displayFormat: (value: number) => string

    Function to format the displayed values.

    displayInit?: string

    Initial display text when no data is available.

    displayValuesFor?: (props: BollingerBandTooltipProps, moreProps: any) => any

    Function to determine which data item to display values for.

    fontFamily?: string

    Font family for the tooltip text.

    fontSize?: number

    Font size for the tooltip text.

    fontWeight?: number

    Font weight for the tooltip text.

    labelFill?: string

    Fill color for the tooltip labels.

    labelFontWeight?: number

    Font weight for the tooltip labels.

    onClick?: (event: MouseEvent) => void

    Click event handler for the tooltip.

    options: {
        movingAverageType: string;
        multiplier: number;
        sourcePath: string;
        windowSize: number;
    }

    Configuration options for the Bollinger Band indicator.

    origin?:
        | [number, number]
        | ((width: number, height: number) => [number, number])

    Position of the tooltip, can be static coordinates or function that calculates position.

    textFill?: string

    Fill color for the tooltip text content.

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

    Data accessor function for Bollinger Band values.