Reincharts
    Preparing search index...

    Interface RenkoSeriesProps

    interface RenkoSeriesProps {
        clip?: boolean;
        fill?: { down: string; partial: string; up: string };
        stroke?: { down: string; up: string };
        strokeWidth?: number;
        yAccessor?: (data: any) => any;
    }
    Index

    Properties

    clip?: boolean

    Whether to clip the series to chart area.

    fill?: { down: string; partial: string; up: string }

    Fill colors for Renko bricks (up, down, partial).

    stroke?: { down: string; up: string }

    Stroke colors for Renko bricks (up, down).

    strokeWidth?: number

    Stroke width for Renko bricks.

    yAccessor?: (data: any) => any

    Data accessor function for Renko values.