April 2006
Beginner
1114 pages
98h 16m
English
chart.WallsAndGridlines2D [= setting]
For 3-D charts, True draws gridlines in 2-D format. Default is False. Any difference in the gridline appearance is minor, as illustrated by the following code:
Sub ThreeDGridlines( )
Dim chrt As Chart
Set chrt = Charts("New Chart")
chrt.ChartType = xlSurface
chrt.WallsAndGridlines2D = True
chrt.Axes(xlCategory, xlPrimary).HasMajorGridlines = True
chrt.Axes(xlValue, xlPrimary).HasMajorGridlines = True
chrt.Axes(xlSeries, xlPrimary).HasMajorGridlines = True
End SubRead now
Unlock full access