Reincharts
    Preparing search index...
    interface BrushProps {
        enabled: boolean;
        fillStyle?: string;
        onBrush: (__namedParameters: any, moreProps: any) => void;
        strokeDashArray?: strokeDashTypes;
        strokeStyle?: string;
        strokeWidth?: number;
    }
    Index

    Properties

    enabled: boolean

    Enable or disable the brush selection tool.

    fillStyle?: string

    Fill color of the brush selection area.

    onBrush: (__namedParameters: any, moreProps: any) => void

    Callback function called when the brush selection ends. Returns a start and end value to compute new chart extents.

    strokeDashArray?: strokeDashTypes

    Dash style for the brush border.

    strokeStyle?: string

    Color of the brush selection border.

    strokeWidth?: number

    Width of the brush selection border.