views:

81

answers:

4

We're using the MS Chart for .net, but encountering the "image not found" problem for which there doesn't seem to be a solution.

Are there any alternatives for generating simple charts?

+2  A: 

Google charts are awesome. (http://code.google.com/apis/charttools/)

There is also a C# library available to help generate the URLS needed for the charts

ckramer
How about printing?
chris
The output is just an image, so you literally just use an image tag to render the chart. The browser will print it just like any other image.
ckramer
Have you used in a secure site - i.e. using https?
chris
I've not used it with https, but a quick look at the forums suggests that you can use https instead of http on the chart URL, but it may be flaky. If you use http from your https site you'll get the "There are secure and non-secure elements" warning. You could maybe set up something on the server side to call through to the google APIs, but then that means your server is going to be making requests to render charts for everyone. Its worth trying your charts over https and see how things go.
ckramer
I just tried loading the js lib with https and it seemed to work fine, using google.visualization.charttype().draw
chris
+1  A: 

I have had good experiences with Devexpress.

Jason Webb
If your looking for a reporting solution, XtraReports is the way to go, no question.
ckramer
no, this is just a simple bar chart on a web page. I didn't think it would be that difficult.
chris
A: 

The Telerik Radcharts are very powerful...it can handle simple to very complex charts.

It's very easy to setup simple charts...just a few lines of code

Ed B
A: 

Fusion charts. They also have a free edition.

this. __curious_geek