Dear Team,
I’d like to turn of pairs of graphlines
like line 0 and 1, 2 and 3 etc.
I currently use the function below per graphline.
itemclick: function (e)
{
//console.log(“legend click: ” + e.dataPointIndex);
//console.log(e);
if (typeof (e.dataSeries.visible) === “undefined” || e.dataSeries.visible)
{
e.dataSeries.visible = false;
}
else
{
e.dataSeries.visible = true;
}
chart1.render ();
}