LabelsAxis (Object)

Member of:

ChartSection object

Description:

Acts as a logical container for both labels axes in a chart.

Example:

This example shows how to set basic properties of the XAxis label and the ZAxis label:

with(ActiveDocument.Sections["Chart"])
{
      LabelsAxis.XAxis.ShowValues = true
      LabelsAxis.XAxis.ShowTickmarks = true
      LabelsAxis.ZAxis.ShowValues = false
       LabelsAxis.ZAxis.ShowTickmarks = false
}

Methods:

None

Properties:

XAxis: Property AutoFrequency as Boolean, Property LabelFrequency as Number, Property LabelText as String, Property MaximumBarsDisplayed as Number, Property MaximumBarsEnable as Boolean, Property ShowLabel as Boolean, Property ShowTickmarks as Boolean, Property ShowValues as Boolean, Property TickmarkFrequency as Number

ZAxis: Property LabelText as String, Property MaximumBarsDisplayed as Number, Property MaximumBarsEnable as Boolean, Property ShowLabel as Boolean, Property ShowTickmarks as Boolean, Property ShowValues as Boolean

Objects:

XAxis As XaxisLabel, ZAxis As ZAxisLabel