Reincharts
    Preparing search index...

    Interface OHLCSeriesProps

    interface OHLCSeriesProps {
        clip?: boolean;
        stroke?: string | ((data: any) => string);
        strokeWidth?: number;
        yAccessor: (data: any) => IOHLC;
    }
    Index

    Properties

    clip?: boolean

    Whether to clip the OHLC series to chart bounds.

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

    Stroke color for OHLC bars. Can be a string or a function.

    strokeWidth?: number

    Stroke width for OHLC bars.

    yAccessor: (data: any) => IOHLC