I've been migrating my ASP.Net experience to MVC and till now it has been a pleasent experience with my web-app now I want to go for reporting. With the old ASP.Net I've used Crystal reports but it is paid so later I settled with simple html reporting. Here's how it works -
I've two type of reports -
- Form based reports (similar to form print-out)
- Grid print outs which are usually based on a dashboard or filtered Grid
I can render html for both. For the Grid I render a table and send the response stream as xls so the user gets to download an excel file and Excel supports the rendering of html . This simple method has been handy as it provides full flexibility for layout and styling.
I want to know if there're better options. I've done some homework and I need to get it reviewed by you experts. So, kindly take a look and share your experience which option would you go for:
Some reporting tools comparison - http://csharp-source.net/open-source/charting-and-reporting
My own html rendering as explained above. It has been working for both form-based and Grid-based reporting. If I opt for a better option I'd expect the flexibility and level of complexity of use compared to this option.
WebChart - http://www.carlosag.net/Tools/WebChart/ Free and has report designer integrated with visual-studio
GCP http://code.google.com/apis/chart/interactive/docs/gallery.html The famous google Chart plugin / API. Renders interactive charts
sparkline chart plugin http://omnipotent.net/jquery.sparkline/ (big, small even as tiny as inline charts, supports most of the standard chart-types)
Simple Bar 3D (gerd-tentler) http://www.gerd-tentler.de/tools/graphs/ (the guy has created some impressive bar charts using html tables - specific chart-type but it might be quick and easy for what it is meant)
Client Report Definition (.rdlc) Files I was wondering if I opt Crystal reports (paid) can it be easier to use .rdlc files with MVC? Just like the answer in : Adding Reporting Capabilities to MVC?
Some SO posts -
- Adding Reporting Capabilities to MVC?
- Recommend some C# Printing/Print Preview/Reporting Libraries?
- Export to Excel in Asp.net MVC
Some other options I've been thru -
- http://www.chartle.net
- Using xml(for data) + xsl/xslt(for formatting)
- CSV (comma separated value) or tab files (http://www.codeproject.com/KB/custom-controls/Excel_CSV_export_button.aspx)
- rdlc - http://weblogs.asp.net/rajbk/archive/2009/11/25/rendering-an-rdlc-directly-to-the-response-stream-in-asp-net-mvc.aspx
- rdlc http://weblogs.asp.net/rajbk/archive/2006/03/02/How-to-render-client-report-definition-files-_28002E00_rdlc_2900_-directly-to-the-Response-stream-without-preview.aspx
- rdlc http://weblogs.asp.net/rajbk/archive/2010/05/09/creating-an-asp-net-report-using-visual-studio-2010-part-1.aspx