SidePlane: IScene3DPlane;
The SidePlane property determines parameters of the scene side wall (the YOZ plane). Use the IScene3DPlane interface to work with available parameters.
This example assumes that there is the S object of the IScene3D type.
Sub Chart3D;
Var
S : IScene3D;
Plane : IScene3DCoordinatePlanes;
Begin
Plane := S.DisplayedObjects.CoordinatePlanes;
Plane.SidePlane.Grid.Color := New GxColor.CreateARGB(255,0,0,255);
End Sub Chart3D;
Executing the example changes the color of the scene side wall to blue.
See also: