TimeAwareTickIntervalType (Property)

Applies To:

XAxisLabel (Object)

Description:

Enables you to specify the recurring intervals at which to display tick marks. This property is used with the BQTimeAwareIntervalUnit constant group.

Action:

Read-write, BQTimeAwareIntervalUnit

Constants:

The BQTimeAwareIntervalUnit constant group consists of these values:

Note:

The bqTimeAwarePage constant is not applicable to the TimeAwareTickIntervalType property.

Example:

This example shows how to set the place the tickmark interval type to every fifth day. The script enables Time Aware, disables the AutoFrequency property, enables the Show Tickmarks property and sets the tickmark interval to every fifth week.

ActiveDocument.Sections["UnitProdLineChart"].LabelsAxis.XAxis.TimeAwareOn = true
ActiveDocument.Sections["UnitProdLineChart"].LabelsAxis.XAxis.AutoFrequency = false
ActiveDocument.Sections["UnitProdLineChart"].LabelsAxis.XAxis.ShowTickmarks = true
ActiveDocument.Sections["UnitProdLineChart"].LabelsAxis.XAxis.TickmarkFrequency = 5
ActiveDocument.Sections["UnitProdLineChart"].LabelsAxis.XAxis.TimeAwareTickIntervalType = bqTimeAwareWeek