Reincharts
    Preparing search index...

    Interface SARSeriesProps

    interface SARSeriesProps {
        closePath?: string;
        fillStyle?: { falling: string; rising: string };
        highlightOnHover?: boolean;
        onClick?: (e: MouseEvent, moreProps: any) => void;
        onContextMenu?: (e: MouseEvent, moreProps: any) => void;
        onDoubleClick?: (e: MouseEvent, moreProps: any) => void;
        strokeStyle?: { falling: string; rising: string };
        strokeWidth?: number;
        yAccessor: (data: any) => undefined | number;
    }
    Index

    Properties

    closePath?: string

    Key for the close price in the data.

    fillStyle?: { falling: string; rising: string }

    Fill colors for SAR dots.

    highlightOnHover?: boolean

    Whether to highlight SAR dots on hover.

    onClick?: (e: MouseEvent, moreProps: any) => void

    Click event handler.

    onContextMenu?: (e: MouseEvent, moreProps: any) => void

    Context menu event handler.

    onDoubleClick?: (e: MouseEvent, moreProps: any) => void

    Double click event handler.

    strokeStyle?: { falling: string; rising: string }

    Stroke colors for SAR dots.

    strokeWidth?: number

    Width of the stroke around SAR dots.

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

    Data accessor function for SAR values.