I can update the value of the spider chart data and see it animated using this method:
chart.series[i].setData(newSeries[i].data);
But, since the series in the spider diagram consists not only of data, but also of other fields, as in
series: [{
name: 'Allocated Budget',
data: [43000, 19000, 60000, 35000, 17000, 10000],
pointPlacement: 'on'
}, {
name: 'Actual Spending',
data: [50000, 39000, 42000, 31000, 26000, 14000],
pointPlacement: 'on'
}]
Along with the data, when I need to change a value name: 'Actual Spending', how can I update a series of animations?
Because, for example, if I call:
chart.series[i].update({series: newSeries[i] , name : newName});
There will be no animation.
If still unclear ... Well, sometimes jsfiddle is worth 100 words.