label: String

Sets the label of the stripLine. These are shown on top of axis labels.


Default: “” (empty string)
Example: “Threshold”, “1920”

var  chart =  new  CanvasJS.Chart("container",
{
 .
 .
axisX:{
    stripLines: [{
        .
        label:"Label 1",
        .
    }]
},
 .
 .
});
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