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 -

  1. Form based reports (similar to form print-out)
  2. 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

  1. 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.

  2. WebChart - http://www.carlosag.net/Tools/WebChart/ Free and has report designer integrated with visual-studio

  3. GCP http://code.google.com/apis/chart/interactive/docs/gallery.html The famous google Chart plugin / API. Renders interactive charts

  4. sparkline chart plugin http://omnipotent.net/jquery.sparkline/ (big, small even as tiny as inline charts, supports most of the standard chart-types)

  5. 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)

  6. 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 -

Some other options I've been thru -

link|improve this question

53% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.