Applies To:
XAxis object, ZAxis object
Description:
Displays tick marks on the X or Y axis.
Action:
Read-write, Boolean
Example:
This example shows how to display tick marks on the X-axis and hide them on the Z-axis:
var MyChart = ActiveDocument.Sections["Chart"] MyChart.LabelsAxis.XAxis.ShowTickmarks = true MyChart.LabelsAxis.ZAxis.ShowTickmarks = false