About the behavior of TScrollPager
Posted: Mon Jun 30, 2014 9:41 am
Question1:
When I assign a Series to TScrollPager like the following code,
it just set the pointor of ScrollPager->Series to seriesTest,
or copy seriesTest to ScrollPager->Series?
Question2:
How does ScrollPager->SetUpScrollPager() function behave?
When resizing TChart, it should be called?
Even I have called it when TChart resized,
the color of ScrollPager->ColorBandTool seems not being remembered.
Question3:
ScrollPager->SubChartTChart->RemoveAllSeries() works same with Chart->RemoveAllSeries()?
it just disconnect all the series with ScrollPager->SubChartTChart?
FreeAllSeries() function should be called if want all the series to be deleted?
BTW, I am using the newest version (2014) for Firmonkey XE4 .
When I assign a Series to TScrollPager like the following code,
it just set the pointor of ScrollPager->Series to seriesTest,
or copy seriesTest to ScrollPager->Series?
Code: Select all
TFastLineSeries* seriesTest = new TFastLineSeries(this);
ScrollPager->Series = seriesTest;
How does ScrollPager->SetUpScrollPager() function behave?
When resizing TChart, it should be called?
Even I have called it when TChart resized,
the color of ScrollPager->ColorBandTool seems not being remembered.
Question3:
ScrollPager->SubChartTChart->RemoveAllSeries() works same with Chart->RemoveAllSeries()?
it just disconnect all the series with ScrollPager->SubChartTChart?
FreeAllSeries() function should be called if want all the series to be deleted?
BTW, I am using the newest version (2014) for Firmonkey XE4 .