thickness: Number

Sets the thickness of the stripLine in pixels. This property should be used along with “value” property – it gets ignored when startValue & endValue are used.


Default: 1
Example: 2,4,5,6

var  chart =  new  CanvasJS.Chart("container",
{
 .
 .
axisY:{
    stripLines: [{
        .
        thickness:3,
        .
    }]
},
 .
 .
});
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