How to create asp.net 2.0 pie chart and bar chart
i found it rather complex to get started with but definitely nice and powerful
RobV
2009-06-10 13:19:19
A:
In addition to Microsoft Charting you can also get good components from
Conrad
2009-06-10 09:01:57
A:
For a different approach than the MS Chart Control or other components would be to use to use the Microsoft Report Viewer control and design a report (locally or via reporting services) that way.
Chalkey
2009-06-10 09:05:03
+2
A:
You could write your own Generic Handler (.ashx) that generates an Image of your Bar Chart/Pie Chart as a Bitmap using System.Drawing and saves it to the Response.OutputStream if a) you really want to make life hard for yourself or b) really need to customise the output in detail
Much better to use one of the Controls recommended by the other guys
RobV
2009-06-10 10:52:48
The Bitmap etc classes are not supported for use on a web server; see the caution block here: http://msdn.microsoft.com/en-us/library/system.drawing.aspx
Marc Gravell
2009-06-10 13:25:44
that only applies to Web and Windows Services, a Generic Handler is simply part of a Web Application. I've never had any issues with this
RobV
2009-06-10 14:44:57
just read some more related stuff to that and MS class an ASP.Net Web Application as a Service, my bad
RobV
2009-06-10 14:48:50