Hi,
Please add the ability to programmatically remove a series from the chart. Thank you.
@ViewChild('mylinechart')
public linechart: Chart;
//Current this is what I do
// this.linechart.seires = []; // which removes all series
// by series name
this.linechart.removeSeries('temperature');
// and by series sequence no
this.linechart.removeSeries(0);