WPF报表控件(折线图、柱状图、饼状图)

来源:互联网 发布:windows上安装jenkins 编辑:程序博客网 时间:2024/05/16 12:47

Free tools supporting panning / zooming:

  • DynamicDataDisplay - a nice, open source data visualization library. Unfortunately it's not been updated since April 30, 2009.

Free tools without built in pan / zoom support:

  • WPF Toolkit. Supports most important 2D charts, you'll have to implement pan / zoom yourself.
  • WPF Toolkit Development Release. Supports stacked charts, equivalent to the Silverlight version.

Paid tools with built in pan / zoom support:

  • 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)
  • SciChart. Supports most important 2D charts, comes with zooming and panning, mouse-wheel with animation on zoom. (See this blog post on using zooming / panning across multiple charts)
  • 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.

(http://stackoverflow.com/questions/577278/wpf-chart-controls)

0 0