Reincharts
    Preparing search index...

    Interface CandlestickSeriesProps

    interface CandlestickSeriesProps {
        candleStrokeWidth?: number;
        clip?: boolean;
        fillStyle?: string | ((data: any) => string);
        strokeStyle?: string | ((data: any) => string);
        wickStroke?: string | ((data: any) => string);
        width?:
            | number
            | ((props: CandlestickSeriesProps, moreProps: any) => number);
        widthRatio?: number;
        yAccessor: (
            data: any,
        ) => undefined | { close: number; high: number; low: number; open: number };
    }
    Index

    Properties

    candleStrokeWidth?: number

    Width of the candle stroke.

    clip?: boolean

    Whether to clip the series to chart area.

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

    Fill color or function for candles.

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

    Stroke color or function for candles.

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

    Stroke color or function for candle wicks.

    width?: number | ((props: CandlestickSeriesProps, moreProps: any) => number)
    widthRatio?: number

    Ratio of candle width to available space.

    yAccessor: (
        data: any,
    ) => undefined | { close: number; high: number; low: number; open: number }