Reincharts
    Preparing search index...
    interface CursorProps {
        customX?: (props: CursorProps, moreProps: any) => number;
        disableYCursor?: boolean;
        snapX?: boolean;
        strokeDasharray?: strokeDashTypes;
        strokeStyle?: string;
        useXCursorShape?: boolean;
        xCursorShapeFillStyle?: string | ((currentItem: any) => string);
        xCursorShapeStrokeDasharray?: strokeDashTypes;
        xCursorShapeStrokeStyle?: string | ((currentItem: any) => string);
    }
    Index

    Properties

    customX?: (props: CursorProps, moreProps: any) => number

    Custom function to calculate the X coordinate position.

    disableYCursor?: boolean

    Whether to disable the Y cursor line.

    snapX?: boolean

    Controls whether the X coordinate of the cursor snaps to the nearest data point.

    strokeDasharray?: strokeDashTypes

    Dash style for the cursor lines.

    strokeStyle?: string

    Color of the cursor lines.

    useXCursorShape?: boolean

    Whether to use a custom shape for the X cursor.

    xCursorShapeFillStyle?: string | ((currentItem: any) => string)

    Fill for the custom XCursorShape. Can be color or custom function.

    xCursorShapeStrokeDasharray?: strokeDashTypes

    Stroke dash style for the custom XCursorShape.

    xCursorShapeStrokeStyle?: string | ((currentItem: any) => string)

    Stroke for the custom XCursorShape. Can be color or custom function.