When you move the mouse pointer on a point, it will be appreciate to control the display time. In some charts, the mark text contains a lot of information, and the users have to move the pointer on the point 2 or 3 times....
Thanks in advance
Sophie Morissette
Display time for the tool MarksTip
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Sophie,
Maybe I'm not understanding well what you mean but TMarksTipsTool already has a delay time which can be configured at design-time or at run-time.
If that's not what you need could you please send us an example we can run "as-is" so that we can reproduce the problem here?
You can post files at [url]news://www.steema.net/steema.public.attachments[/url] newsgroup.
Maybe I'm not understanding well what you mean but TMarksTipsTool already has a delay time which can be configured at design-time or at run-time.
If that's not what you need could you please send us an example we can run "as-is" so that we can reproduce the problem here?
You can post files at [url]news://www.steema.net/steema.public.attachments[/url] newsgroup.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Sophie,
Thanks for your reply.
You cannot control the amount of time a MarksTip Tool will display for.
I've already added your request to our wish-list to be considered for future releases.
Meanwhile, what you can do is create your own Marks Tips using Annotation Tool and use the TeeChart Timer to control how long they appear for.
Thanks for your reply.
You cannot control the amount of time a MarksTip Tool will display for.
I've already added your request to our wish-list to be considered for future releases.
Meanwhile, what you can do is create your own Marks Tips using Annotation Tool and use the TeeChart Timer to control how long they appear for.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Site Admin
- Posts: 83
- Joined: Wed Nov 12, 2003 5:00 am
- Location: Girona, Catalonia
- Contact:
In Delphi (VCL) you can control this using the Application class:
Application.HintHidePause:=8000; // <-- show the tip 8 seconds
I've added a new property to MarksTip tool that links to it.
ChartTool1.HideDelay:=5000; // 5 seconds
The default VCL time amount is 2500 milliseconds.
Note: When changing this delay, you're effectively changing it for all the hints in your app, as MarksTip tool is internally using the same class as the VCL does.
Application.HintHidePause:=8000; // <-- show the tip 8 seconds
I've added a new property to MarksTip tool that links to it.
ChartTool1.HideDelay:=5000; // 5 seconds
The default VCL time amount is 2500 milliseconds.
Note: When changing this delay, you're effectively changing it for all the hints in your app, as MarksTip tool is internally using the same class as the VCL does.