vote up 6 vote down star
1

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.

flag

14 Answers

vote up 6 vote down

Dundas Chart is one of the best out there. It's not free, but it's worth it.

link|flag
i have to agree, an excellent product with stellar support. [no i do not work for dundas] – Steven A. Lowe Sep 30 '08 at 15:20
1  
It is free now: microsoft.com/downloads/… – Benjol Oct 27 at 9:33
vote up 5 vote down

Google Charts?

link|flag
vote up 2 vote down

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

link|flag
vote up 2 vote down

You may now also want to consider the Microsoft Chart Controls for .NET Framework 3.5

These have just been released.

link|flag
vote up 1 vote down

If you're looking for free components get Google Charts.

Non-free components which I really like are

link|flag
vote up 1 vote down

We use XSLT to transform XML into SVG. Once you build up the various charting formats and data DTDs, its very easy to reuse.

link|flag
vote up 1 vote down

If you are interested in Flash-based charts, then: http://teethgrinder.co.uk/open-flash-chart/

link|flag
vote up 1 vote down

Did a search on CodePlex and found

Free Silverlight Chart Control http://www.codeplex.com/FreeSilverlightChart

Google Chart Control for ASP.Net http://www.codeplex.com/GoogleChartNet

Free Silverlight Chart Control - visifire http://www.codeplex.com/visifire

etc....

The search I used http://www.codeplex.com/Project/ProjectDirectory.aspx?ProjectSearchText=chart

I personally can't suggest any since I never used them, but hope this helps.

link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down

Googel Charts was the first thing that came to my mind. I had also used Emprise Javascript Charts at a previous employer with some luck; but it is not free to use.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

For graphs, nothings beats graphviz. There are tons of third party wrapper-libraries so you'll be able to dynamically generate the graphs with most every system.

link|flag
Can you link some of these 3rd party wrappers for .NET? I've been searching for a good wrapper for GraphViz and Dot for a long time, and have turned up zilch. – Robert S. Sep 30 '08 at 14:48
vote up 0 vote down

Depends on what you're looking for.

Google Charts is excellent at what it does and is quick and easy to pick up - I used it for the first time about two weeks ago and was generating multiple reports, in two different styles, within about three hours of first looking at its documentation. However, unless there's more to it than the docs let on, "what it does" is limited to relatively basic charts and it will not support anything particularly fancy. It also requires you to do a lot of the grunt work yourself, such as figuring out what the scale and axis labels should be.

For anything beyond Google Charts' capabilities, I would use the GD::Graph modules from CPAN, but those are for Perl rather than .NET or Silverlight, so they probably won't do you much good.

link|flag
vote up 0 vote down

Note that the public VS2010 CTP image includes chart functionality built into ASP.NET; overdue, but welcome.

link|flag

Your Answer

Get an OpenID
or

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