I’m building an application in django and I’d like to have a reports section. The charts will be used to disply numerical values between different dates.
I tried GoogleChartWrapper but I’m looking something more flexible and nicer.
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Not really a django question – just use a javascript plotting package and stick it in your django app in the usual way (.js goes into your media files, javascript includes go into your templates for headers etc). Then write django templates that dump your data into whatever the plot package needs – probably javascript.
I’ve used flot for this, but for something really shiny there’s protovis which is something I might use next time!