Reincharts
    Preparing search index...

    Interface EdgeIndicatorProps

    interface EdgeIndicatorProps {
        arrowWidth?: number;
        displayFormat?: (n: number) => string;
        edgeAt?: "left" | "right";
        fill?: string | ((data: any) => string);
        fitToText?: boolean;
        fontFamily?: string;
        fontSize?: number;
        fullWidth?: boolean;
        itemType: "first" | "last";
        lineStroke?: string | ((data: any) => string);
        lineStrokeDasharray?: strokeDashTypes;
        orient?: "left" | "right";
        rectHeight?: number;
        rectWidth?: number;
        stroke?: string | ((data: any) => string);
        textFill?: string | ((data: any) => string);
        type?: "horizontal";
        yAccessor: (data: any) => undefined | number;
        yAxisPad?: number;
    }
    Index

    Properties

    arrowWidth?: number

    Width of the coordinate arrows.

    displayFormat?: (n: number) => string

    Function to format the displayed value.

    edgeAt?: "left" | "right"

    Which edge of the chart to place the indicator on.

    fill?: string | ((data: any) => string)

    Fill color for the indicator background.

    fitToText?: boolean

    Whether to fit the indicator box to the text content.

    fontFamily?: string

    Font family for the indicator text.

    fontSize?: number

    Font size for the indicator text.

    fullWidth?: boolean

    Whether the indicator should span the full width.

    itemType: "first" | "last"

    Whether to show indicator for the first or last data item.

    lineStroke?: string | ((data: any) => string)

    Stroke color for the indicator line.

    lineStrokeDasharray?: strokeDashTypes

    Dash style for the indicator line.

    orient?: "left" | "right"

    Orientation of the indicator.

    rectHeight?: number

    Height of the indicator rectangle.

    rectWidth?: number

    Width of the indicator rectangle.

    stroke?: string | ((data: any) => string)

    Stroke color for the indicator border.

    textFill?: string | ((data: any) => string)

    Fill color for the indicator text.

    type?: "horizontal"

    Type of the indicator.

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

    Data accessor function for Y values.

    yAxisPad?: number

    Padding from the Y axis.