Tools & ToolTip

TeeChart for JavaScript for the HTML5 Canvas
Post Reply
nh128
Newbie
Newbie
Posts: 6
Joined: Mon Feb 23, 2009 12:00 am

Tools & ToolTip

Post by nh128 » Mon May 07, 2018 1:53 am

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)

Yeray
Site Admin
Site Admin
Posts: 9514
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Tools & ToolTip

Post by Yeray » Tue May 08, 2018 8:31 am

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.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply