Search found 55 matches

by David Berneda
Thu Sep 02, 2004 2:59 pm
Forum: Wishes and ideas
Topic: Why does the TC7 demo crash? See pic...
Replies: 2
Views: 11233

Are you using Windows Me or 98 ? Which version of Internet Explorer do you have ?
Also, can you post the video resolution and color depth settings ?

thanks and regards
david
by David Berneda
Fri Jul 02, 2004 3:20 pm
Forum: VCL
Topic: Can't get SVG to work in v7 (urgent)
Replies: 8
Views: 17025

Hi Pete This is an VCL limitation (the canvas class only works fine when the control has a parent, and this parent ultimately has a form parent). To overcome this, the only (easy) workaround is to modify TeeChart source code. I've already applied the fix for next coming version 7.01 (free upgrade). ...
by David Berneda
Fri Jul 02, 2004 11:57 am
Forum: Beta versions
Topic: TeeChart Pro VCL v7.01 Source Code (beta) posted
Replies: 0
Views: 8750

TeeChart Pro VCL v7.01 Source Code (beta) posted

For source-code customers only, at the moment:

http://www.steema.com/downloads/client_access.html

Version 7.01 contains a number of bug fixes and some additions.
Full documentation will be included at Release.txt file in the final 7.01 version.

regards
david
by David Berneda
Fri Jun 11, 2004 5:04 pm
Forum: Wishes and ideas
Topic: Hidden TeeTools
Replies: 2
Views: 11070

Hidden TeeTools, use "InternalUse"

Hi Dan There's already a way to do this, but only in "advanced" mode. There's a protected variable "InternalUse : Boolean" at every tool. You can set this variable to True so the tool will not show at the list: type TMyTool=class(TCustomChartElement); ... TMyTool( ChartTool123 ).InternalUse := True;...
by David Berneda
Fri Jun 11, 2004 5:00 pm
Forum: Wishes and ideas
Topic: TeeRecompile.exe with debug option
Replies: 1
Views: 8836

Yes

Hi Martin
This new option is included in version 8 beta of TeeRecompile.
Thanks for your wish.

regards
david
by David Berneda
Thu Jan 01, 2004 1:20 pm
Forum: Beta versions
Topic: TeeChart 7 for Delphi 8.NET "Release Candidate" av
Replies: 0
Views: 9919

TeeChart 7 for Delphi 8.NET "Release Candidate" av

TeeChart 7 design-time and run-time assemblies for Delphi 8.NET are now available at beta-tester private download page.

http://www.steema.com/support/teechart/ ... sting.html

regards
david
by David Berneda
Wed Nov 19, 2003 4:46 pm
Forum: Wishes and ideas
Topic: Axis label justification
Replies: 2
Views: 10942

Thanks for your suggestion. In version 7 (currently in beta), there's a new axis event that is called just before each axis label is going to be displayed. You can use this event to perform specific custom text alignment per each label. The code below does the wish you want: // Set-up the event: Cha...
by David Berneda
Wed Nov 19, 2003 4:26 pm
Forum: Wishes and ideas
Topic: Horizontal Line Series Marks position
Replies: 1
Views: 8777

Thanks for your suggestion. Logged at our wish-database to implement in next v7 release, if possible. One possible solution is to add an "alignment" property to marks, being "top or bottom" the default for most series, and "left or right" for horizontal bar and line series. As a workaround, you can ...
by David Berneda
Wed Nov 19, 2003 4:15 pm
Forum: Wishes and ideas
Topic: Zoom function - make it Snap to data point
Replies: 1
Views: 8741

Thanks for your suggestion. It is already at our wish-database. There are some issues having something like Chart1.Zoom.Snap = True. When there are more than one series, should the snapping be done on all series or just one ? (If just one, then there must be another property to specify which series,...