I’m trying to set stripLines to my chart. What is the setter for that? I tried like so:
var stripLines = {
startValue: new Date(“2017-10-21 00:00:11”),
endValue: new Date(“2018-10-22 00:00:22″) ,
color:”#000”,
};
chart.axisX[0].stripLines.push(stripLines);
chart.render();
What is wrong with that?