Reincharts
    Preparing search index...

    Interface RSISeriesProps

    interface RSISeriesProps {
        className?: string;
        middle?: number;
        overBought?: number;
        overSold?: number;
        strokeDasharray?: {
            bottom: strokeDashTypes;
            line: strokeDashTypes;
            middle: strokeDashTypes;
            top: strokeDashTypes;
        };
        strokeStyle?: {
            bottom: string;
            insideThreshold: string;
            line: string;
            middle: string;
            outsideThreshold: string;
            top: string;
        };
        strokeWidth?: {
            bottom: number;
            insideThreshold: number;
            middle: number;
            outsideThreshold: number;
            top: number;
        };
        yAccessor: (data: any) => any;
    }
    Index

    Properties

    className?: string

    CSS class name for the series.

    middle?: number

    Middle threshold.

    overBought?: number

    OverBought threshold (lower).

    overSold?: number

    OverSold threshold (upper).

    strokeDasharray?: {
        bottom: strokeDashTypes;
        line: strokeDashTypes;
        middle: strokeDashTypes;
        top: strokeDashTypes;
    }

    Dash style for RSI lines (Uses same dash array types as other components).

    strokeStyle?: {
        bottom: string;
        insideThreshold: string;
        line: string;
        middle: string;
        outsideThreshold: string;
        top: string;
    }

    Stroke colors for RSI lines (line is a fallback for outsideThreshold, insideThreshold).

    strokeWidth?: {
        bottom: number;
        insideThreshold: number;
        middle: number;
        outsideThreshold: number;
        top: number;
    }

    Width for RSI lines.

    yAccessor: (data: any) => any

    Data accessor function for RSI values.