IPage.Count
IPage

property Count: Integer;

Type Library
TeeChartx

Description
The Count property returns the number of Chart pages. The TChart.Page.MaxPointsPerPage property must be greater than zero to activate auto paging.

The TChart.Page.Current property determines the current visible page.

Example [Visual Basic]:

This code traverses all Chart pages:

For t = 1 To TChart1.Page.Count

TChart1.Page.Current = t

Next t

This code moves Chart to the last page

With TChart1

.Page.Current = .Page.Count

End With

This code moves the Chart to the first page

TChart1.Page.Current = 1