indexLabelOrientation: String

Sets the Orientation of indexLabel to “horizontal” or “vertical”.


Default: “horizontal”
Example: “horizontal”, “vertical”

Notes
  • Doesn’t work with pie, doughnut, funnel and pyramid charts


var  chart =  new  CanvasJS.Chart("container",
{
 .
 .
 data: [{
  dataPoints: [
   { x: 10, y: 10,  indexLabel: "label1", indexLabelOrientation: "vertical" },

   ],
  },

 ]
 .
 .
});
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