CoordinatePlanes: IScene3DCoordinatePlanes;
The CoordinatePlanes property determines parameters of coordinate planes. Use the IScene3DCoordinatePlanes interface to work with available parameters.
Planes are displayed by default.
This example assumes that there is the object S of the IScene3D type.
Sub Chart3D;
Var
S : IScene3D;
Begin
S.BeginUpdate;
S.DisplayedObjects.CoordinatePlanes.TextStyles.TextStyleOX.Color := New GxColor.CreateARGB(255,0,0,255);
S.EndUpdate;
End Sub Chart3D;
Executing the example changes the color of OX axis labels to blue.
See also: