Reincharts
    Preparing search index...

    Interface StraightLineProps

    interface StraightLineProps {
        lineDash?: number[] | strokeDashTypes;
        lineWidth?: number;
        strokeStyle?: string;
        type?: "horizontal" | "vertical";
        xValue?: number;
        yValue?: number;
    }
    Index

    Properties

    lineDash?: number[] | strokeDashTypes

    Dash style for the line stroke.

    lineWidth?: number

    Width of the line stroke.

    strokeStyle?: string

    Color of the line stroke.

    type?: "horizontal" | "vertical"

    Type of line orientation.

    xValue?: number

    X-axis value for vertical lines.

    yValue?: number

    Y-axis value for horizontal lines.