Hi,
How can I remove a line from a Chart (line), I only seem to be able to use .remove() function to remove points on the chart, for both lines, for example:
if I have a line chart:
.remove(chart.first()); - removes the first point for both charts
.remove(1); - not sure
.remove(chart.idByIndex(1)); - removes the first point
I need the a specific line
Cheers