Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using Python to work on a web app that has a data visualization element. Basically, it will gather data about a user's music catalog and allow them to visualize it and take actions based on what the data tells them. I'll pretty much exclusively need bar graphs to achieve the visualization I want. Given the dynamic nature of the app, the package needs to support creating charts on the fly -- essentially responding to a user's commands and their data to quickly render a new chart.

The problem is, some of the more lightweight packages like PyCha create charts that aren't visually appealing or suitable for a consumer based web app. I've looked into Fusion Charts, but that seems a bit heavy weight for my purposes, and it uses Flash, which I'd like to avoid.

Is there a nice middle ground somewhere that allows me to create reasonably pretty charts based on user input but doesn't bog down my server with Flash baggage and an enterprise level amount of features?

share|improve this question
Are client side js libraries a possibility? In the free category you could use google charts and in the pay category you could use highcharts or wijmo. – Victor 'Chris' Cabral Feb 4 at 16:28

1 Answer

up vote 1 down vote accepted

I would recommend the awesome d3.js package, you can do just about anything with it and it produces beautiful interactive charts.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.