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.
View3dOptions.ZoomText not available anymore
Re: View3dOptions.ZoomText not available anymore
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???
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
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.
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,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: View3dOptions.ZoomText not available anymore
Ok yes it is clear now. Thanks.