Eidher Report post Posted August 29, 2008 I'm doing this example: Creating a single series chart from data contained in arrays, but I got this error: undefined method `renderChart' I pasted the renderChart method in the application.rb. What's wrong? Share this post Link to post Share on other sites
srividya_sharma Report post Posted December 17, 2008 renderChart will usually be used from the view. Hence, this function should be copied to application_helper.rb from where it will be accessible to all the views. It is recommended to use these functions as part of library modules instead of copying the function into your application_helper. Srividya Share this post Link to post Share on other sites