View3dOptions.ZoomText not available anymore

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Brace
Newbie
Newbie
Posts: 33
Joined: Tue May 05, 2009 12:00 am

View3dOptions.ZoomText not available anymore

Post by Brace » Mon Aug 01, 2011 12:19 pm

After installing TeeChart 2011 on opening one form I see that this property Chart.View3dOptions.ZoomText is not available.

Could you explain me what exactly has been removed and what is affected?

Thanks.

Brace
Newbie
Newbie
Posts: 33
Joined: Tue May 05, 2009 12:00 am

Re: View3dOptions.ZoomText not available anymore

Post by Brace » Mon Aug 01, 2011 12:53 pm

I found this in the release notes:

1) ZoomText property is now an enumerated type
(TCanvasZoomText) instead of a boolean.
Chart1.View3DOptions.ZoomText:=ztManual

but the help then says:

TView3DOptions.ZoomText
TView3DOptions

property ZoomText: Boolean;

Unit
TeCanvas

Description
Default = True

ZoomText enables/disables the zooming of text when using the TView3DOptions.Zoom property.

So if I was using FALSE, should I use now NO or MANUAL???

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

Re: View3dOptions.ZoomText not available anymore

Post by Yeray » Wed Aug 03, 2011 7:48 am

Hello Brace,

With TeeChart v2010.02, the property ZoomText changed from boolean to TCanvasZoomText=(ztManual, ztNo, ztAuto). If I'm not wrong:
- ztManual makes the FontZoom to be applied.
- ztAuto makes the general Zoom to be applied to the texts too.
- ztNo makes the texts not to have any zoom at all, despite of the Zoom or FontZoom values.

We will try to correct the help files asap. Excuse us for the confusion generated.
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

Brace
Newbie
Newbie
Posts: 33
Joined: Tue May 05, 2009 12:00 am

Re: View3dOptions.ZoomText not available anymore

Post by Brace » Wed Aug 03, 2011 8:57 am

Ok yes it is clear now. Thanks.

Post Reply