TCustomAxisPanel.NumPages
TCustomAxisPanel
function NumPages: Integer; dynamic;
Unit
TeEngine
Description
The NumPages function returns the number of Chart pages. The TChart.TCustomAxisPanel.MaxPointsPerPage property must be greater than zero to activate auto paging.
The TChart.TCustomAxisPanel.Page property determines the current visible page.
This code traverses all Chart pages:
var t : Integer;
for t := 1 to Chart1.NumPages do
Chart1.Page := t ;