When there are many data(about one million) in ScrollPager->Series,
the dragging speed of ColorBandTool falls obviously...
Even the series is TFastlineSeries, and I have set it with "Speed Theme" like mentioned in the Examples.
Is there any good way to avoid that...
Thanks in advance.
About the dragging speed of ColorBandTool of ScrollPager
Re: About the dragging speed of ColorBandTool of ScrollPager
Hello,
Note that drawing a million points in a regular screen means that many points will be drawn in the same pixel.
That's why we implemented solutions like:
In your case, note the series you should reduce the number of points to draw is the one in the SubChart. Ie:
Note that drawing a million points in a regular screen means that many points will be drawn in the same pixel.
That's why we implemented solutions like:
- DrawAllPoints property. See the example at "All features\Welcome !\Speed\Fast Line Speed DrawAll".
- TDownSampling function to reduce the number of points to draw. See the example at "All features\Welcome !\Functions\Extended\Reducing number of points".
- Implement as tips as possible from the ones explained in the Real-time Charting article here.
- Speed Theme as you've already found. See the example at "All features\Welcome !\Speed\Fast Line Speed DrawAll".
In your case, note the series you should reduce the number of points to draw is the one in the SubChart. Ie:
Code: Select all
(ChartTool1.SubChartTChart[0] as TFastLineSeries).DrawAllPoints:=false;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |