Upon loading my view and HighChart chart, I encountered the following errors.
https://i.sstatic.net/AMOK8.png
The issue seems to stem from the use of the Navigator (timeline focus bar) in my chart:
https://i.sstatic.net/EA0Tc.png
When I disable the navigator in chartConfig.options, the errors disappear. However, I would like to utilize this feature.
navigator : {
enabled: true,
adaptToUpdatedData: true,
// enabled: false,
// adaptToUpdatedData: false,
series : {
data : vm.navigatorData
}
},
Currently, I populate the default data array as follows. This array is initialized with placeholder values until user interaction prompts actual data insertion into the chart:
vm.navigatorData = [];
var count = 0;
// creating a chart with 97 x points, each with a y value of 0:
_.times(97, function() {
dayHolder.push({
'x': count++,
'y': 0
});
});