Hi.
I have a TPoint3DSeries plot in the chart. If I set Chart1.View3D to false, I get a 2D View from the front (x-y axes), is there a easy way to obtain a 2D View from the top (x-z axes)?
Thanks,
WILLY
2D View From top
Hi, Willy.
Yes, there is. Basically, all you have to do is rotate chart so that x-z plane will be perpendicular to your point of view:
Yes, there is. Basically, all you have to do is rotate chart so that x-z plane will be perpendicular to your point of view:
Code: Select all
With Chart1 do
begin
Chart3DPercent := 100;
View3DOptions.Elevation := 270;
View3DOptions.Orthogonal := False;
View3DOptions.Perspective := 0;
View3DOptions.Rotation := 360;
end;
Marjan Slatinek,
http://www.steema.com
http://www.steema.com