@amitava82 You can set the startAngle and endAngle of Pie like this:
<PieChart width={300} height={244}>
<Pie
data={chartData}
cx="50%"
cy="50%"
startAngle={90}
endAngle={-270}
innerRadius="60%"
outerRadius="80%"
stroke="none"
/>
</PieChart>
Here is a demo.
Please check document for detail.
Most helpful comment
@amitava82 You can set the
startAngleandendAngleofPielike this:Here is a demo.
Please check document for detail.