Pre loader

Scatter Plot Performance

Welcome to the SciChart Forums!

  • Please read our Question Asking Guidelines for how to format a good question
  • Some reputation is required to post answers. Get up-voted to avoid the spam filter!
  • We welcome community answers and upvotes. Every Q&A improves SciChart for everyone

WPF Forums | JavaScript Forums | Android Forums | iOS Forums

1
0

I currently have a scatter plot:
XyScatterRenderableSeries series = new XyScatterRenderableSeries();
series.PointMarker = new EllipsePointMarker()
{
Fill = Colors.Blue,
Width = 3,
Height = 3,
};
series.AntiAliasing = false;
series.ResamplingMode = Abt.Controls.SciChart.Numerics.ResamplingMode.None;
With 12000 points. The points are sorted, but I’m still having performance issues. When zoomed all the way out panning and zooming is very slow/choppy. Is there a way to set up the series so that it has higher performance?

Thanks,
Greg

  • You must to post comments
1
0

Hi there,

In our examples and test-cases we are able to display up to 20-50,000 scatter points before the speed becomes unacceptably slow. This is because scatter requires more pixels to be drawn (it is fill-rate limited) rather than line. Also scatter points cannot be resampled. We are using the HighSpeedRasterizer which is faster than HighQualityRasterizer for scatter points.

In our internal build we are experimenting with drawing scatter points using multi-threading. This is part of our ongoing commitment to focus on performance. The speed is excellent, you can get 10-50k points at 60FPS and 100-200k scatter points at still interactive framerates.

Hope this helps,
Andrew

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.

Try SciChart Today

Start a trial and discover why we are the choice
of demanding developers worldwide

Start TrialCase Studies