What are some good toolsets for graphing/charting in a web application? Preferably open-source/freeware, and particularly looking at developing with ASP.NET MVC or Silverlight 2.0.
相关问题
- How to dynamically load partial view Via jquery aj
- how to Enumerate local fonts in silverlight 4
- How to determine +/- sign when calculating diagona
- Free Silverlight mapping with Bing maps and OpenSt
- Custom number picker?
相关文章
- Mercurial Commit Charts / Graphs [closed]
- Change color of bars depending on value in Highcha
- Forward request from servlet to jsp
- superclass mismatch for class CommentsController (
- New Windows Application - What language?
- relative url in wcf service binding
- play2 framework my template is not seen. : package
- Embedded images not showing when in a UserControl
If you are interested in Flash-based charts, then: http://teethgrinder.co.uk/open-flash-chart/
If you're looking for free components get Google Charts.
Non-free components which I really like are
For free flash charting, you may look at FusionCharts Free. Or, if you want more professional and are ready to shell out $$$, look at FusionCharts v3
Dundas Chart is one of the best out there. It's not free, but it's worth it.
There's also fusion charts, scruffy and riya. Most of these charting libraries generate charts from xml files, so you can use them from any framework.
I think Google Charts are outstanding if you're not looking for animations etc. It'll take loads of your servers and Google will render the whole thing for you. It'll also give very detailed control over how you want the graph to look. It's also the simplest and cleanest way I think. It's just an image ... No Flash no SVG and so on.
One tip I'd give is to not use a wrapper API. I found that the easiest way to work with it to use the actually use URL based "API" direct. But I guess that's just MHO.