Reincharts
    Preparing search index...

    Interface CircleMarkerProps

    interface CircleMarkerProps {
        className?: string;
        fillStyle?: string;
        point: { data: any; x: number; y: number };
        r: number | ((data: any) => number);
        strokeStyle?: string;
        strokeWidth?: number;
    }
    Index

    Properties

    className?: string

    CSS class name for styling the circle marker.

    fillStyle?: string

    Fill color for the circle marker.

    point: { data: any; x: number; y: number }

    Point data containing position and associated data.

    r: number | ((data: any) => number)

    Radius of the circle marker, can be static number or function based on data.

    strokeStyle?: string

    Stroke color for the circle marker border.

    strokeWidth?: number

    Width of the stroke around the circle marker.