Sorry if I come with another problem but I am evaluating this product in order to see if I can do all I need.
I have a chart with multiple lines series: series[0], series[1], series[2], series[3], …
Each serie has his dataAdapter: dataAdapters[0], dataAdapters[1], dataAdapters[2], dataAdapters[3], …
And I have only one toolTipFormatFunction for all the series.
In the toolTipFormatFunction I need to access to some additional information in the serie records:
If I am displaying the toolTip for series[0], then I need to print dataAdapters[0].records[itemIndex].addition_information
If I am displaying the toolTip for series[1], then I need to print dataAdapters[1].records[itemIndex].addition_information
If I am displaying the toolTip for series[2], then I need to print dataAdapters[2].records[itemIndex].addition_information
If I am displaying the toolTip for series[3], then I need to print dataAdapters[3].records[itemIndex].addition_information
…
The problem is:
how can I know the name of the dataAdapter of the serie for which I am displaying the toolTip ?
Thanks for any help
Miche