Reincharts
    Preparing search index...

    Interface StochasticSeriesProps

    interface StochasticSeriesProps {
        className?: string;
        middle?: number;
        overBought?: number;
        overSold?: number;
        strokeStyle?: {
            bottom: string;
            dLine: string;
            kLine: string;
            middle: string;
            top: string;
        };
        yAccessor: (data: any) => { D: number; K: number };
    }
    Index

    Properties

    className?: string

    CSS class name for the series.

    middle?: number

    Y-value for the middle threshold line.

    overBought?: number

    Y-value for the overbought threshold line.

    overSold?: number

    Y-value for the oversold threshold line.

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

    Stroke colors for the lines.

    yAccessor: (data: any) => { D: number; K: number }

    Data accessor function for stochastic K and D values.