startAngle: Number

Sets the starting Angle of the Pie or Doughnut Chart in degrees.


Default: 0
Example: 30, 240, -100..

Notes
  • Angle is in degrees.
  • Angle increases in clockwise direction
  • Angle can be positive or negative value


var  chart =  new  CanvasJS.Chart("container",
{
 .
 .
  data: [{
   type: "pie",
   startAngle:  90,

  },
 ]
 .
 .
});
chart.render();


Try it Yourself by Editing the Code below.

  Also See:    



If you have any questions, please feel free to ask in our forums.Ask Question