tags:

views:

83

answers:

1

i am using bar chat and i want to use glass bar chart instead of that

tutorials are given for PHP only.

+1  A: 

Disclaimer: I don't know, what is "glass bar chart".

You cannot (or at least it is not effective to) generate graphics (charts) on the AppEngine servers. However, if you want to display bar charts or any other kind of plots and charts in your AppEngine applications, you have two other solutions:

A) Use an external chart plotting service to produce plots. Google Charts is a popular choice. There are some Python libraries which can help here:

B) Plot anything on the client (use Javascript to plot charts). There are some Javascript libraries which may help you:

Generally, A is easier and more accessible, but B can produce more eye-candy. If you need interactive charts, you should choose B.

jetxee