Reincharts
    Preparing search index...

    Interface ElderRaySeriesProps

    interface ElderRaySeriesProps {
        className?: string;
        clip?: boolean;
        fillStyle?: { bearPower: string; bullPower: string };
        straightLineStrokeDasharray?: strokeDashTypes;
        straightLineStrokeStyle?: string;
        strokeStyle?: string;
        widthRatio?: number;
        yAccessor: (data: any) => { bearPower: number; bullPower: number };
    }
    Index

    Properties

    className?: string

    CSS class name for the series.

    clip?: boolean

    Whether to clip the series to chart area.

    fillStyle?: { bearPower: string; bullPower: string }

    Fill colors for bear power and bull power bars.

    straightLineStrokeDasharray?: strokeDashTypes

    Dash style for the zero line.

    straightLineStrokeStyle?: string

    Stroke color for the zero line.

    strokeStyle?: string

    Stroke style for the bars, can be static or function based on data and y value.

    widthRatio?: number

    Ratio of bar width to available space.

    yAccessor: (data: any) => { bearPower: number; bullPower: number }

    Data accessor function for Elder Ray values (bear power and bull power).