TextStyleOX: IScene3DTextStyle;
The TextStyleOX property determines a style OX axis labels.
This example assumes that there is the S object of the IScene3D type.
Sub Chart3D;
Var
S : IScene3D;
Style : IScene3DCoordinateTextStyles;
Begin
Style := s.DisplayedObjects.CoordinatePlanes.TextStyles;
Style.TextStyleOX.Color := New GxColor.CreateARGB(255,0,0,255);
End Sub Chart3D;
Executing the example changes the color of texts along the OX axis to blue.
See also: