I am looking for a very simple WPF chart which should have a 2D graph and and should have pan and zoom facilities .

link|improve this question
feedback

10 Answers

Free tools supporting panning / zooming:

  • DynamicDataDisplay - a nice, open source data visualization library. Unfortunately it's not been updated for a year and a half.
  • Visiblox Charts. Support for the most important 2D charts, comes with zooming and panning. The free version comes with watermark. (See this blog post on using zooming / panning)

Free tools without built in pan / zoom support:

  • WPF Toolkit. Supports most important 2D charts, you'll have to implement pan / zoom yourself.

Paid tools with built in pan / zoom support:

  • Infragistics xamDataChart. Supports most important 2D charts, zooming and panning. See this blog article on how to use zooming.
  • Telerik RadChart. Supports lots of 2D charts, has some support for zooming and panning, you might need to do a little work on that.
  • Visifire. Supports lots of 2D charts and zooming without animation, might need to do some extra work for smoother zooming.

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

link|improve this answer
3  
It appears that Visiblox is only free if you're happy to have watermarked charts, and Visifire is only a trial version. – Will Dean Jan 10 '11 at 13:07
Visifire has pan and zoom! – Basarat Ali Mar 8 '11 at 5:48
@Basarat Ali: could you link an example? Can't find any example showing this off in their gallery. – Gergely Orosz Mar 8 '11 at 10:43
notice the scrollbar has draggable handles ... you can use it to zoom the x axis as well as pan it : visifire.com/blog/2010/02/26/… Another version added click zoom : visifire.com/blog/2010/04/09/… Although both are X axis only ... hmmm maybe they don't have y axis zooming. Best to ask in their forum – Basarat Ali Mar 8 '11 at 12:06
There is something that vaguely resembles an X zoom. If you're looking to implement proper zooming and panning Visifire at the moment doesn't seem to have that out of the box. – Gergely Orosz Mar 8 '11 at 22:49
feedback

DynamicDataDisplay is brilliant, zoom and pan built in and its free on CodePlex.

link|improve this answer
feedback

You can get the Silverlight Chart Controls running on WPF, they're quite nice (and free).

link|improve this answer
As far as I know they don't come with zooming / panning out of the box though unfortunately. – Gergely Orosz Nov 19 '10 at 17:03
feedback

Try VisiFire. It looks good. It works well. And it is open source with a commercial license option.

link|improve this answer
As far as I can tell Visifire doesn't support zooming... or am I missing something? – Gergely Orosz Nov 19 '10 at 17:02
@GergelyOrosz Visifire already started supporting both static and Real-time(Dynamic) Zooming panning. Checkout the following sample app and play with "Start/Stop" button and ZoomingEnabled option. Link: visifire.com/… – Somnath Mar 19 at 4:02
feedback

The WPF Toolkit is available. It is free from CodePlex.

It can be downloaded here. There is some commentary here.

link|improve this answer
feedback

Code project article here.

Commercial products:

  1. SoftwareFX
  2. Telerik

I'm sure there are others

link|improve this answer
I've used SoftwareFX's ChartFx product and it works well. – Kelly May 22 at 14:35
feedback

aM Charts are also making WPF Chart controls. Currently they only show off a pie chart, but they are set to provide new ones in short term.

link|improve this answer
amCharts for WPF are now out of beta and support most popular chart types like line, area, column, bar, pie, etc. – Alan Mendelevich May 5 '09 at 15:29
feedback

The chart control in the WPF Toolkit has a horrible bug: it never forgets any of the data points. So if you try to implement a floating chart you will get out of memory after round about 3000 DataPoint-objects. This bug has been reported to MS over a year ago but nobody seems to care...

link|improve this answer
feedback

Also DevExpress have Charts (see DevExpress.Com).

link|improve this answer
feedback

Another one is OxyPlot, which is an open-source cross-platform (WPF, Silverlight, WinForms, Mono) .Net plotting library.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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