TextStyleOY: IScene3DTextStyle;
The TextStyleOY property determines a style of OY 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.TextStyleOY.Color := New GxColor.CreateARGB(255,0,0,255);
End Sub Chart3D;
Executing the example changes the color of texts along the OY axis to blue.
See also: