Reincharts
    Preparing search index...

    Interface AreaSeriesProps

    interface AreaSeriesProps {
        baseAt?:
            | number
            | (
                (
                    yScale: ScaleContinuousNumeric<number, number>,
                    d: [number, number],
                    moreProps: any,
                ) => number
            );
        canvasClip?: (context: CanvasRenderingContext2D, moreProps: any) => void;
        connectNulls?: boolean;
        curve?: CurveFactory;
        fillStyle?:
            | string
            | (
                (
                    context: CanvasRenderingContext2D,
                    moreProps: any,
                ) => string | CanvasGradient | CanvasPattern
            );
        strokeDasharray?: strokeDashTypes;
        strokeStyle?: string;
        strokeWidth?: number;
        yAccessor: (data: any) => undefined | number;
    }
    Index

    Properties

    baseAt?:
        | number
        | (
            (
                yScale: ScaleContinuousNumeric<number, number>,
                d: [number, number],
                moreProps: any,
            ) => number
        )

    The base y value to draw the area to.

    canvasClip?: (context: CanvasRenderingContext2D, moreProps: any) => void
    connectNulls?: boolean

    Whether to connect the area between undefined data points.

    curve?: CurveFactory

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

    fillStyle?:
        | string
        | (
            (
                context: CanvasRenderingContext2D,
                moreProps: any,
            ) => string | CanvasGradient | CanvasPattern
        )

    Fill color for the area under the line.

    strokeDasharray?: strokeDashTypes

    Stroke dash type for the area series line.

    strokeStyle?: string

    Color of the area series line.

    strokeWidth?: number

    Stroke width for the area series line.

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

    Selector for data to plot.