vote up 5 vote down star
2

I want to Embed a chart in a Web Application developed using django.

I have come across Google charts API, ReportLab, PyChart, MatPlotLib and ChartDirector

I want to do it in the server side rather than send the AJAX request to Google chart APIs, as I also want to embed the chart into the PDF.

Which is the best option to use, and what are the relative merits and demerits of one over the other.

flag

What does "best" mean in this context? Please define some criteria you want to optimize. – S.Lott Mar 4 at 12:23
Simplicity of API, Aesthetics and the ability to embed in a pdf easily – becomingGuru Mar 4 at 19:07
That said and if you think embedding a png file to a pdf is easy, CairoPlot is a good choice. – Rodrigo Mar 5 at 12:00

5 Answers

vote up 3 vote down check

Another choice is CairoPlot.

We picked matplotlib over the others for some serious graphing inside one of our django apps, primarily because it was the only one that gave us exactly the kind of control we needed.

Performance generating PNG's was fine for us but... it was a highly specialized app with less than 10 logins a day.

link|flag
Hi, I'm the one maintaning CairoPlot. Could you define what CairoPlot lacked for you to use it? Maybe I can fix it so it becomes better for Django apps. – Rodrigo Mar 4 at 16:31
@Rodrigo: If I recall with CairoPlot the problem was simply we didn't discover CairoPlot until after we already had some charts coded using matplotlib. I'll check with my team members though to see if there was something I'm forgetting. Our project was pre-1.1 as well, so that might be problem. – Van Gale Mar 4 at 16:36
@Van Gale: Nice. If you try to use it nowadays, you should use the trunk version as we haven't released the 1.2 yet. – Rodrigo Mar 4 at 18:15
vote up 2 vote down

Open Flash Chart 2

http://teethgrinder.co.uk/open-flash-chart-2/

python library http://btbytes.github.com/pyofc2/

kybi

link|flag
vote up 3 vote down

Well, I'm involved in an open source project, Djime, that uses OpenFlashChart 2.

As you can see from our code, generating the JSON-data that OFC uses is a bit complex, but the output is very nice and user friendly, since you can add tooltips, etc. to the different elements.

link|flag
I'm not fond of Flash, so my +1 is for pointing to your project which I hadn't seen before, and for it looking like a serious project as opposed to a toy. Thanks! – Van Gale Mar 5 at 4:28
vote up 0 vote down

I have used FusionCharts Free with Django.

Its flash based, open source, multi-licensed and it's well documented. It's ActionScript 1, but AS version wasn't really a criteria for me, though it could be for others.

link|flag
vote up 1 vote down

One package I've wanted to try is graphite. It's a graphing server / platform built with Django. It's specialized for "numeric time-series data" though, like stock prices or bandwidth utilization. If that fits your need I would check it out. Here are some screenshots:

http://graphite.wikidot.com/screen-shots

link|flag

Your Answer

Get an OpenID
or

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