up vote 41 down vote favorite
19
share [g+] share [fb]

We're working on a WPF-based desktop application that charts financial markets information (candlestick charts, overlayed indicator curves, volume, etc). The charts are displayed in real-time with responses to market ticks being shown in real-time (updating one to two times per second is probably a reasonable display refresh policy). We've been looking for a software package (commercial is fine by us) that has the capability of displaying these charts. Additionally, we'd like to have an approach that can render the initial amount of data in a reasonable timeframe (give or take 100-200ms from the time we hand the data over to a complete render on screen). Also we view multiple charts (5-10) simultaneously so a solution that chews up 50% of my CPU to display one chart really isn't going to work well.

Has anyone had any good experiences with charting controls. We've had to hand roll the last few charts we've done and I'd prefer not to do it again.

Solutions that can make use of the GPU to minimize CPU utilization would be nice as well.

link|improve this question

75% accept rate
1  
Hi, what solution did u finally end up with? We're having the same issue over here and it seems the "wpf chart market" hasn't made any progress over the last 2.5years... – David Sep 15 '11 at 12:23
Well, after talking about it I actually went ahead and created my own. See SciChart on the News page of www.abtsoftware.co.uk. Full answer below (I edited my original answer as the topic is closed) – Dr. Andrew Burnett-Thompson Dec 21 '11 at 12:04
feedback

closed as not constructive by Will Nov 29 '11 at 15:24

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

18 Answers

up vote 15 down vote accepted

Take a look at this one Dynamic Data Display. Even though I didn't use it myself (I only ran few samples), I've read few positive things about this control on the net and it seems to be performance oriented.

EDIT: We ended up using this control to render graphs in our application and it is simply brilliant. One of our main criteria was performance.

link|improve this answer
feedback

Visiblox charts seem like a good bet on performance. See this blog post on the performance comparison vs Flash charts and this one vs Silverlight Toolkit. Their high performance examples page also has some impressive cases.

On their features page they target "High Performance Charting" as one of their top selling points.

Full Disclosure: I have been heavily involved in development of Visiblox, hence I know that library in much more detail than other libraries.

link|improve this answer
DDD is apparently as good as Visiblox regarding performance scottlogic.co.uk/blog/colin/2010/12/… – Mikhail Dec 11 '10 at 22:00
1  
Indeed. The article, however is comparing the Silverlight components, not the WPF ones. It would be interesting to see a similar comparison on WPF components as well! – Gergely Orosz Dec 13 '10 at 12:02
feedback

Would be good to hear if one Chart control is distinguishing itself, now that WPF has been around for some time. These seems to be the top contenders out there:

Infragistics, Syncfusion, amCharts, ChartFX, Telerik, Visifire, StockChartX, Dundas (Not in WPF), Nevron (Not in WPF), Xceed (Not in WPF but uses OpenGL for acceleration), Dynamic Data Display (project seem to have died), ComponentOne, WPF Toolkit

link|improve this answer
feedback

Having gone through the same issues as you guys (above) I decided to build a financial chart, simply because none of the solutions on the web (commercial) cut it. I have investigated

  • amCharts (nice but a bit like google finance, bit noddy)
  • Telerik (pretty but slllllllow)
  • Visifire (nice again, but not designed for real-time financial apps)

The only commercial chart package I would consider is StockChartX for WPF, but the licence is not cheap. A good $2k per developer you'll fork out, but it does give a whole lot of features for financial apps.

Good luck! :)

EDIT: Update Dec2011 & full disclosure. I own ABT Software Services and was directly involved in the development of this component

As a response to this need, I've gone and created a high performance WPF/SL chart component called SciChart. SciChart seeks to fill the gap for ultra high performance scientific / stock charts and as part of its optimisation it uses proprietary resampling algorithms to reduce the dataset before drawing, immediate mode rendering and a host of other optimisations such as object pooling and resource re-use.

Please click on the link above to view a performance demonstration (requires Silverlight 4 - WPF version also available). The chart is able to draw multiple series totalling 5 or 6-figure point counts at interactive framerates (20-50FPS depending on hardware). This is equivalent to around 2million datapoints per second (100,000 datapoints @ 20FPS).

link|improve this answer
Thanks for the answer. And I appreciate the honesty given how many of us have gone through the same thing. What's frightening is that so many of us haven't found an affordable solution. – Ajaxx Apr 10 '10 at 19:24
feedback

amCharts are pretty fast: http://wpf.amcharts.com/ also free with linkware license

link|improve this answer
Never heard of amCharts, does anyone have any experience with them? – Ajaxx Mar 31 '10 at 15:39
I've used the Line Chart and the Stock chart... They work great. – Nestor Nov 29 '10 at 18:57
feedback

We bought the RadControl for WPF from Telerik. The performance of that chart is very very poor. For realtime this chart is absolute unusable. In our use case we have 4 data series with an update interval of 1 second and maximal 120 data point per series.

It should replace a ten year old software. But the chart control does not have at least a fraction of performance of the "old" chart.

link|improve this answer
feedback

I've been very pleased with Dundas - not cheap, but excellent quality, documentation, and technical support; their real-time charts might be just what you're looking for

link|improve this answer
feedback

I am looking for a real time solution as well. As far as the WPF Toolkit goes, I am not satisfied with using it as "real time" charting solution.

As an example, I have an area chart that has seven series in it. Each series uses an in-memory collection for its source of data; each collection has about 22 elements that are X/Y coordinates. This is small set of data by almost any standard.

When I update the data on just one series at the rate of once-per-second by setting the series’ ItemSource property, my CPU usage for the application rises from 1% to an average of 12-15%, and occasionally spikes to the 20s. If I set all seven series in a single method that is called at once-per-second, I see an average CPU usage of 60-65% with spikes as in the 90s. Reducing the interval to as little as once every five seconds didn't seem make much impact on performance either.

I have verified through code isolation that setting the ItemSource property is what is bogging down the CPU. I have also used the WPF Performance Suite to verify that it is in fact the chart control that is responsible for the usage during that time.

Based on this, I don’t see how it could be used in a lot of “real time visualization” scenarios such as instrumentation applications—especially where larger sets of data might be required, multiple charts per screen, and/or other applications need to be running in the background.

link|improve this answer
Interesting. I haven't had much time to delve into further use of WPF Toolkit but that would seem like a real limitation for those of us doing financial charting in realtime. I know that in my world, we scrutinize windows that run over 5% because there are usually multiple of these instances. But 60-65% would be completely unusable. – Ajaxx Feb 27 '10 at 17:34
feedback

I'm using the one from WPF Toolkit in CodePlex

alt text

It supports OLAP too, which is great.

link|improve this answer
feedback

Disclosure: I am working for Nevron, and I want to give you some insights about Nevron charting and the Nevron roadmap for WPF/Silverlight/Windows Phone 7 and Mono.

First you should know that Xceed Chart is actually one of the first versions of Nevron chart that we sold to Xceed back in 2003. So everything that Xceed chart has, Nevron has in a better way (features, speed etc.) that is a product of 8 years of optimizations.

Making quick, realtime charts in WPF and Silverlight is impossible, when these charts need to be in 3D or have a high level of detail. That is because of the retained achitecture of WPF/Silverlight is too heavy for 3D scenes with millions of triangles, which we handle pretty quick with OpenGL (with both hardware accelerated and software mode). For 2D scenes the issue is basically the same - except that 2D scenes are generally smaller in memory volume (Note that Silverlight does not provide 3D API, so anything in 3D that you see for Silverlight is actually safe C# tortured to do 3D that it cannot.).

In 2012 we are going to release a new product called Nevron Open Vision, the main agenda of which is to provide .NET developers with a new framework for Presentation Layer development under .NET (charting part of it too). This is going to be a cross platform solution that would integrate inside existing WinForm, WPF, Silverlight, Windows Phone 7 applications and if everything goes well, many Mono based .NET runtimes (Mac and Linux for start, Android and IOS next) - all from a single code base, so you will no longer need to query for specific compoentns for each of these runtimes/presentation layers. As far as WPF is concerned - it is generally architecturally dead anyway - in Windows 7 for 2D rendering we will go through immediate Direct2D graphics backend, which will provide lighting fast charting for new Windows systems. For older Windows systems we will use multithreaded rendering, which here at our labs shows some great potential as well.

link|improve this answer
feedback

A quick Google search for "WPF Chart control" popped up a few commercial results. I recommend downloading a few trials and test them for performance with your requirements in mind.

link|improve this answer
We had tested a few of them, ChartFX, Nevron, Xceed and a few others. Of them, Nevron and Xceed stood out, though to be honest they look and feel like the same product. I'm really looking for feedback from others who might have found a product and what they thought worked or didn't. – Ajaxx Jan 9 '09 at 21:25
feedback

Ajaxx, I'm in the same boat - creating financial software using WPF. I'm about to start using Dynamic Data Display and will probably extend it to meet our particular needs. Do you fancy collaborating on this?

link|improve this answer
I wouldn't mind collaborating, it's incredibly difficult to find a decent engine. The buy-build conversations are incredibly tough because none of the products on the market are making the grade. – Ajaxx Mar 2 '09 at 19:48
send me an email IanTebbutt at hotmail.com – MrTelly Mar 3 '09 at 8:42
feedback

I had the misfortune to buy Infragistics WPF Data Visualization, the performance is terrible. My software should work with 2 to 12 series (curves), depending on users input, each series could have 30 to 3.000.000 points, with Infragistics forget it. Also the API for use of features like zoom, pan, crosshair is too complicated.

link|improve this answer
1  
Wow. 3,000,000 datapoints, if you have double precision data types for X and Y axes would require 48MBytes just to store in memory. Iterating over that list and performing simple manipulations alone (put aside rendering) would take tens or even hundreds of milliseconds. May I ask, what is your requirement? Is it still valid and did you find a solution? – Dr. Andrew Burnett-Thompson Dec 21 '11 at 11:58
feedback

I also used Telerik's RadControl for WPF. It is oriented around UI database editing, not realtime display. In my case, I have 7-10 ms updates to a database. To place this on a Telerik Grid requires some sophisticated multithread design, at which I must confess I have not been as successful as I would wish. Support from Telerik was good, but a realtime application pushes their envelope a "byte too far".

link|improve this answer
feedback

LightningChart Ultimate by Arction Ltd is the fastest in 2D and 3D, with superior real-time performance. All 2D graphics are DirectX acclerated too, and code optimization is taken to the extreme. The chart does not use the slow WPF rendering pipeline, but DirectX 9.0c directly instead.

LightningChart is a WinForms component, but can be used in WPF inside WindowsFormsHost control, where it fully works. This data visualization toolkit is the best for professional measurement, engineering, research and GIS applications.

LightningChart web site

By the way, a stripped-down LightingChart Basic edition is available too, 100% free.

link|improve this answer
feedback

let's face it, there is no fast wpf chart for a large dataset. wpf is simply no good for large dataset. we learned this in a hard way. wpf simply cannot replace windowsform in many ways for LOB apps.

link|improve this answer
feedback

Disclosure: I work for Mindscape and have not used some of the other products listed. All I can do is tell the story of how our charting controls got to have very high performance.

Mindscape offers a big range of charting controls for WPF. They were designed from the ground up in WPF and later ported to Silverlight and then Windows Phone 7. The benefit of this porting was that we found the performance on a resource constrained device like a phone really required that we ensure our charting controls were SUPER fast. We got them to be crazy fast on Windows Phone 7 devices and then we back ported all of the improvements up the stack to Silverlight and WPF. The benefit is that the controls are now insanely high performance on the desktop.

Realtime data won't be an issue with Mindscape WPF Charts. They come as part of a fuller suite of WPF controls also.

link|improve this answer
feedback

i must recommend my new flash chart "MultiChart", it is very light and very fast, and much more easy to use than amCharts and fusionCharts. plus it supports multilanguage and rtl.

http://chart.sqlcode.org

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.