indexLabelTextAlign: String

Sets the text alignment of indexlabels. This feature is useful whenever indexlabel text is wrapped into multiple lines.


Default: “left”
Options: “left”, “center”, “right”

var  chart =  new  CanvasJS.Chart("container",
{
 .
 .
 data: [{
   .
   indexLabelTextAlign: "right",
   dataPoints: [],
   .
 }]
 .
 .
});
chart.render();


Try it Yourself by Editing the Code below.



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