Page 1 of 1

View3dOptions.ZoomText not available anymore

Posted: Mon Aug 01, 2011 12:19 pm
by 10553159
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.

Re: View3dOptions.ZoomText not available anymore

Posted: Mon Aug 01, 2011 12:53 pm
by 10553159
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???

Re: View3dOptions.ZoomText not available anymore

Posted: Wed Aug 03, 2011 7:48 am
by yeray
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.

Re: View3dOptions.ZoomText not available anymore

Posted: Wed Aug 03, 2011 8:57 am
by 10553159
Ok yes it is clear now. Thanks.