Sets the specified property of stripLines.
Parameters:var chart = new CanvasJS("container",
{
.
.
axisX: {
stripLines: [{
value: 10,
label: "Stripline"
},
.
],
.
},
.
.
});
chart.render();
chart.axisX[0].stripLines[0].set("label", "Stripline Label");
Please refer to StripLine Element for complete list of properties that can be set via this method.