XAxisLabel (Object)
Setting the TimeAware ScrollMaxDisplayed property is equivalent to entering the maximum number of values to display when scrolling through values on the Time Aware axis. The property persists with the document/application.
Read-write, Numeric
This example shows how to enable the scrolling for the Time Aware axis. It also shows how to set the scrolling interval type to a maximum of five days.
ActiveDocument.Sections["UnitProdLineChart"].LabelsAxis.XAxis.TimeAwareOn = true ActiveDocument.Sections["UnitProdLineChart"].LabelsAxis.XAxis.TimeAwareScrollEnabled = true ActiveDocument.Sections["UnitProdLineChart"].LabelsAxis.XAxis.TimeAwareScrollIntervalType = bqTimeAwareDay ActiveDocument.Sections["UnitProdLineChart"].LabelsAxis.XAxis.TimeAwareScrollMaxDisplayed = 5