I've seen a few answers online but none that seem to apply to angular.
I have an example with a simple chart and two series. I want the toggle to toggle the visability of the second series.
this.chartOptions.series[1].visible = true|false;
but this doesn't trigger the chart to redraw. And since I defined the chart in the Angular html template I don't think I can re-instantiated the chart element like the docs suggest.
Can anyone help me toggle the chart to redraw?