Is it possible to utilize the linkedTo option within a series to establish connections between multiple series? For example, if I have series identified as series1, series2, series3, and series4, is there a way to link all of them together except for series2?
Can you provide guidance on the proper syntax for linkedTo: ...
?
I attempted using an array as shown below, but unfortunately, it did not yield the intended results:
{
id:'series1',
linkedTo: ['series3','series4'],
data : ...
},
...