Scrolling/Panning in iOS
Posted: Fri Jun 27, 2014 8:14 pm
Hi all,
I am just doing my first tests with TeeChart in Appmethod 1.14 on the iOS platform. I have the TeeChart source code in my project group and everything compiles just fine.
My idea is to use TGanttSeries to represent an electronic program guide (tv guide) visually - my first tests are quite conclusive but panning/scrolling doesn't quite work correctly.
This is how I configured my TChart:
Panning works only once when the app is started and doesn't follow the finger but has an offset. A second attempt doesn't work anymore and the app needs to be restarted for the panning to work again.
Any ideas?
I am using the latest TeeChart 2014 source code for FireMonkey.
Thanks a lot!
CJ
I am just doing my first tests with TeeChart in Appmethod 1.14 on the iOS platform. I have the TeeChart source code in my project group and everything compiles just fine.
My idea is to use TGanttSeries to represent an electronic program guide (tv guide) visually - my first tests are quite conclusive but panning/scrolling doesn't quite work correctly.
This is how I configured my TChart:
Code: Select all
fChart.LeftAxis.Automatic := false;
fChart.LeftAxis.Minimum := -0.5;
fChart.LeftAxis.Maximum := 5;
fChart.BottomAxis.Automatic := false;
fChart.BottomAxis.Minimum := 0;
fChart.BottomAxis.Maximum := 50;
fChart.AllowZoom := false;
fChart.Panning.Active := True;
fChart.AllowPanning := TPanningMode.pmBoth;
Any ideas?
I am using the latest TeeChart 2014 source code for FireMonkey.
Thanks a lot!
CJ