MAIDR JavaScript API
    Preparing search index...

    Interface RechartsPieAngles

    A <Pie>'s startAngle / endAngle props, as Recharts reads them: degrees counterclockwise from 3 o'clock, sweeping from the first to the second. See RechartsAdapterConfig.pieAngles.

    interface RechartsPieAngles {
        startAngle?: number;
        endAngle?: number;
    }
    Index

    Properties

    startAngle?: number

    Where the first slice begins. Recharts' default is 0, 3 o'clock.

    endAngle?: number

    Where the last slice ends. Recharts' default is 360.