Reincharts
    Preparing search index...

    Interface ScatterSeriesProps

    interface ScatterSeriesProps {
        fillStyle?: string | ((data: any) => string);
        marker?: any;
        markerProps?: object;
        markerProvider?: (data: any) => any;
        strokeStyle?: string | ((data: any) => string);
        strokeWidth?: number;
        yAccessor: (data: any) => undefined | number;
    }
    Index

    Properties

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

    Fill color for scatter markers. Passed to marker via markerProps.

    marker?: any

    A Marker to draw.

    markerProps?: object

    Props to pass to the marker.

    markerProvider?: (data: any) => any

    Given the data point return a Marker.

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

    Stroke color for scatter markers. Passed to marker via markerProps.

    strokeWidth?: number

    Stroke width for scatter markers. Passed to marker via markerProps.

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

    Accessor for y value.