Ruby or Rails reporting tools?
        Posted  
        
            by 
                Anushank
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Anushank
        
        
        
        Published on 2012-10-15T05:16:32Z
        Indexed on 
            2012/11/05
            17:00 UTC
        
        
        Read the original article
        Hit count: 519
        
I am looking for a report generation tool in ruby or rails which allows the user to define a template, then fetch data into the created template.
I have been looking through "The Ruby Box: reporting section."
There are two reporting tools I have looked at:
- Thin Reports: It is really good. You can create your own report template with the template editor. Then you can produce PDF reports using thinreports gems. 
- ODF Report: You can create a template ODF file using Open Office and MS Word, and you can use that template to generate the report. 
Both of these solutions lack the ability to draw charts. Does anyone know of similar reporting tools that can draw charts within a given report?
I have tried the RTF Ruby Library. It works, but shares the limitation that it cannot draw charts and graphs.
The minimum requirements are:
- Able to create customizable templates. (e.g. design layout, set font size, color, embed images etc.) 
- Able to draw tables and charts. 
- Template could be in Docx or excel or xml or any other common file format. 
- Report output report must be in Docx or RTF format. 
Thanks
© Stack Overflow or respective owner