labelBorderThickness: Number

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

Default: 0
Example: 2,4..
Notes
  • Label border thickness works when border color is applied.
var  chart =  new  CanvasJS.Chart("container",
{
 .
 .
 axisY: {
      labelBorderColor: "#FF7F7F",
      labelBorderThickness: 2
 },
 .
 . 
});
chart.render();

Try Editing The Code


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