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