mfalcon
mfalcon

Reputation: 880

Chart apps for django

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.

Upvotes: 4

Views: 3316

Answers (4)

Mikhail Korobov
Mikhail Korobov

Reputation: 22238

Another option is to design a chart with e.g. http://dexautomation.com/googlechartgenerator.php and then maintain it and fill with real data using http://pypi.python.org/pypi/django-chart-tools

Upvotes: 1

viraj
viraj

Reputation: 21

you could also try chartit (it uses highcharts). https://pypi.python.org/pypi/django_chartit

Upvotes: 1

dzida
dzida

Reputation: 8981

If you want something powerful I suggest to take a look at matplotlib. This may be also useful: matplotlib and Django.

Upvotes: 1

Spacedman
Spacedman

Reputation: 94212

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!

Upvotes: 1

Related Questions