ShowAll (Method)

Applies To:

AxisLabels collection

Description:

The ShowAll (Method) unhides all hidden axis labels.

Syntax:

Expression.ShowAll()

Expression Required:

An expression that returns an AxisLabels collection

Example:

This example unhides all the hidden Axis labels for the X and Z labels collections:

var MyChart = ActiveDocument.Sections["Chart"]
MyChart.XLabels.ShowAll()
MyChart.ZLabels.ShowAll()