hello my prodject need that only 10 points by pages on the screen and a navigation into these pages but i'm not allow to use the pagenavigator included have you some idea ?
thanks
home pagenavigator
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hello l0ghan,
It's strange, you should be able to do something like:
However you can implement one button for each page movement operation (first, previous, next and last) doing:
It's strange, you should be able to do something like:
Code: Select all
Private Sub Form_Load()
ChartPageNavigator1.Chart = TChart1
TChart1.Series(0).FillSampleValues 100
TChart1.Page.MaxPointsPerPage = 10
End Sub
Code: Select all
TChart1.Page.Current = 0
Code: Select all
TChart1.Page.Next
Code: Select all
TChart1.Page.Previous
Code: Select all
TChart1.Page.Current = TChart1.Page.Count - 1
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |