Reincharts
    Preparing search index...

    Interface RSITooltipProps

    interface RSITooltipProps {
        className?: string;
        displayFormat: (value: number) => string;
        displayInit?: string;
        displayValuesFor: (props: RSITooltipProps, moreProps: any) => any;
        fontFamily?: string;
        fontSize?: number;
        fontWeight?: number;
        labelFill?: string;
        labelFontWeight?: number;
        onClick?: (event: MouseEvent<SVGGElement, MouseEvent>) => void;
        options: { windowSize: number };
        origin: number[] | ((width: number, height: number) => number[]);
        textFill?: string;
        yAccessor: (data: any) => undefined | number;
    }
    Index

    Properties

    className?: string

    CSS class name for styling the tooltip.

    displayFormat: (value: number) => string

    Format function for displaying RSI values.

    displayInit?: string

    Initial display text when no data is available.

    displayValuesFor: (props: RSITooltipProps, moreProps: any) => any

    Function to determine which data should be displayed in the tooltip.

    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<SVGGElement, MouseEvent>) => void

    Click event handler for the tooltip.

    options: { windowSize: number }

    Configuration options for RSI calculation.

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

    Position of the tooltip, either as coordinates or a function that calculates position.

    textFill?: string

    Fill color for the tooltip text values.

    yAccessor: (data: any) => undefined | number

    Function to access RSI values from data.