Incorporating highcharts into my project, I encountered an issue when attempting to add multiple series to an existing chart. The problem arises in setting the tooltip feature differently for each added series.
Here is my current progress:
widget.chart.addSeries({
data: newSeries,
color: color,
tooltip: {
enabled: true,
formatter: function() {
return 'test';
}
}
});