SurfaceGrid: IScene3DGrid;
The SurfaceGrid property determines parameters of surface gridlines. Use the IScene3DGrid interface to work with available parameters.
This example assumes that there is the S object of the IScene3D type.
Sub Chart3D;
Var
s : IScene3D;
sur : IScene3DSurface;
Begin
sur := s.DisplayedObjects.Surfaces.Item(0);
sur.SurfaceGrid.Color := New GxColor.CreateRGB(255,0,0);
End Sub Chart3D;
After executing the example color of surface gridlines is changed to red.
See also: