Page 1 of 1

Tools & ToolTip

Posted: Mon May 07, 2018 1:53 am
by 10052617
Hi,

I'm now in the process of integrating my TeeChart into my web app and I've placed it on a ExtJS panel (via uniGUI) and I was noticing that the tooltip sometimes gets 'frozen' if someone's cursor moves too fast outside the panel that I've put the TeeChart in, so I was wondering if there was a way to 'destroy' the tooltip, I'm assuming HTML5 but the checkbox that will destroy it will not belong to the same panel. Trying to use Chart.tools.active.items does not work very well (And also requires indexing which can get messy)

Re: Tools & ToolTip

Posted: Tue May 08, 2018 8:31 am
by yeray
Hello,

You can save the tool in a variable when you create it. Ie:

Code: Select all

var tip=new Tee.ToolTip(Chart1);
This way you don't need to use any index to access it.

If you still find problems with it it would be helpful if you could arrange a simple example project we can run as-is to reproduce the problem here.
Thanks in advance.