TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
-
Miroslav Hometa
- Newbie

- Posts: 14
- Joined: Wed Apr 05, 2006 12:00 am
Post
by Miroslav Hometa » Thu Jul 06, 2006 8:32 am
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.

-
Narcís
- Site Admin

- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
-
Contact:
Post
by Narcís » Thu Jul 06, 2006 9:05 am
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.
-
Miroslav Hometa
- Newbie

- Posts: 14
- Joined: Wed Apr 05, 2006 12:00 am
Post
by Miroslav Hometa » Thu Jul 06, 2006 9:12 am
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.
Hi Narcis,
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.
-
Narcís
- Site Admin

- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
-
Contact:
Post
by Narcís » Thu Jul 06, 2006 10:10 am
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:
Code: Select all
procedure TMarksTipTool.SetHideDelay(const Value: Integer);
begin
Application.HintHidePause:=Value;
end
-
Miroslav Hometa
- Newbie

- Posts: 14
- Joined: Wed Apr 05, 2006 12:00 am
Post
by Miroslav Hometa » Thu Jul 06, 2006 12:33 pm
Hi Narcis!
Thanks!
I have inserted the property into TeeTools.pas
and enhanced the editdialog TeeMarksTipToolEdit.pas.
Now it works fine.