I am using Highcharts to add/remove it's series whenever a new series in added into chartSeries
property. chartSeries
is an observable array. The problem is that it renders correctly only for the first time, any updates in the property is not effecting the chart.
ChartSettings = {
chart: {
type: 'line'
},
series: chartSeries
});
Any suggestion? JQuery solution is not recommended, leveraging an existing highcharts property would be great. Thanks in advance.