titleBorderThickness: Number

Sets the thickness of border around the axisY Title in pixels. To display border around title, set the titleBorderThickness to a number greater than zero.


Default: 0
Example: 2,4,…

Notes

var  chart =  new  CanvasJS.Chart("container", {
 .
 .
 axisY:{
       title: " Axis Y Title",
       titleBorderColor:"black",
       titleBorderThickness:2
 },
 .
 . 
});
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