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