Hi,
Thank you for the sample.
When the tooltips are "shared' in the 'data' parameter of the 'dataHighlighting' event are all data items, which are highlighted. When they are more than one it is an array.
We're working on the documentation right now.
In your sample just get the first element if the 'data' is array:
Code: $('#jqChart').bind('dataHighlighting', function (event, data) {
if (!data) {
$('#jqChartVolume').jqChart('highlightData', null);
return;
}
if ($.isArray(data)) {
data = data[0];
}
...
Best Regards,
Dragan Matek
jqChart Inc.