Reincharts
    Preparing search index...

    Interface AlternatingFillAreaSeriesProps

    interface AlternatingFillAreaSeriesProps {
        baseAt: number;
        connectNulls?: boolean;
        curve?: CurveFactory;
        fillStyle?: { bottom: string; top: string };
        strokeDasharray?: { bottom: strokeDashTypes; top: strokeDashTypes };
        strokeStyle?: { bottom: string; top: string };
        strokeWidth?: { bottom: number; top: number };
        yAccessor: (data: any) => undefined | number;
    }
    Index

    Properties

    baseAt: number
    connectNulls?: boolean

    Wether to connect the area between undefined data points.

    curve?: CurveFactory

    A factory for a curve generator for the area and line.

    fillStyle?: { bottom: string; top: string }

    Color, gradient, or pattern to use for fill.

    strokeDasharray?: { bottom: strokeDashTypes; top: strokeDashTypes }

    Stroke dash.

    strokeStyle?: { bottom: string; top: string }

    Color, gradient, or pattern to use for the stroke.

    strokeWidth?: { bottom: number; top: number }

    Stroke width.

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

    Selector for data to plot.