When I use the binary-version I can select the HideDelay with the
TMarksToolTip, but when I use the sourcecode-version this property
doesn't exist.
This property is missing in TeeTools.pas.
TMarksTipTool.HideDelay TeeChart7.07
-
- Newbie
- Posts: 14
- Joined: Wed Apr 05, 2006 12:00 am
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Miroslav,
It works fine for me here with v7.07 source code using ChartTool1.MouseDelay. This property is also present in TeeTools.pas. You could try recompiling and reinstalling the packages using the Recompile tool included with the source code installer.
It works fine for me here with v7.07 source code using ChartTool1.MouseDelay. This property is also present in TeeTools.pas. You could try recompiling and reinstalling the packages using the Recompile tool included with the source code installer.
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 |
-
- Newbie
- Posts: 14
- Joined: Wed Apr 05, 2006 12:00 am
Hi Narcis,narcis wrote:Hi Miroslav,
It works fine for me here with v7.07 source code using ChartTool1.MouseDelay. This property is also present in TeeTools.pas. You could try recompiling and reinstalling the packages using the Recompile tool included with the source code installer.
I don't mean MouseDelay. The property HideDelay isn't there.
When I Add a MarkToolTip to a Chart I can set a value for
HIDEDELAY, but only in the version without sourcecode.
I can show you screenshots when you don't believe me.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Miroslav,
Thanks for the information. Now I could see the problem. What happened is a un-synchronization of v7.07 binary installers files. HideDelay property was designed to be included with TeeChart v8 VCL release we are working in. However, for some reasons it remained in the sources we used to build v7.07 binaries.
Anyway, you can easily implement that as its code is pretty simple:
Thanks for the information. Now I could see the problem. What happened is a un-synchronization of v7.07 binary installers files. HideDelay property was designed to be included with TeeChart v8 VCL release we are working in. However, for some reasons it remained in the sources we used to build v7.07 binaries.
Anyway, you can easily implement that as its code is pretty simple:
Code: Select all
procedure TMarksTipTool.SetHideDelay(const Value: Integer);
begin
Application.HintHidePause:=Value;
end
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 |
-
- Newbie
- Posts: 14
- Joined: Wed Apr 05, 2006 12:00 am