Hi,
Is there a way of making the tooltip popup for only one series?
Thanks
ToolTip
Re: ToolTip
Hello,
You could modify the ToolTip refresh function as follows:
You could modify the ToolTip refresh function as follows:
Code: Select all
for (i = 0; i < 3; i++) {
Chart1.addSeries(s = new Tee.Line().addRandom(15));
}
var tooltip = new Tee.ToolTip(Chart1);
Chart1.tools.add(tooltip);
tooltip.old_refresh=tooltip.refresh;
tooltip.refresh = function(series,index) {
if (series == Chart1.series.items[1]) { // this will only show the tooltip for the series index 1
tooltip.old_refresh(series,index);
}
}
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |