ValuesAxis (Object)

Member of:

ChartSection object

Description:

Logically represents all the properties of a charts values axis.

Example:

This example shows how to set some basic properties for the left axis:

with(ActiveDocument.Sections["Chart"]) 
{
ValuesAxis.LeftAxis.AutoScale = true
ValuesAxis.LeftAxis.ShowLabel = false
ValuesAxis.RightAxis.AutoScale = true
ValuesAxis.RightAxis.ShowLabel = false
ValuesAxis.RightAxis.LabelText = "Right Axis"
}

Methods:

None

Properties:

Read-write: Property AdjustableScale as Boolean, Property ShowIntervalTickmarks As Boolean, Property ShowIntervalValues As Boolean, Property ShowValuesAtRight As Boolean

Objects:

LeftAxis As LeftAxis, RightAxis As RightAxis