简体   繁体   English

我们可以使用Google App Engine在python中显示玻璃条形图吗

[英]can we display glass bar chart in python with google app engine

i am using bar chat and i want to use glass bar chart instead of that 我正在使用酒吧聊天,我想使用玻璃条形图代替

tutorials are given for PHP only. 本教程仅适用于PHP。

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. 您无法(或至少没有效果)在AppEngine服务器上生成图形(图表)。 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: 但是,如果要在AppEngine应用程序中显示条形图或任何其他类型的图和图,则有两种其他解决方案:

A) Use an external chart plotting service to produce plots. A)使用外部图表绘图服务生成绘图。 Google Charts is a popular choice. Google图表是一个受欢迎的选择。 There are some Python libraries which can help here: 有一些Python库可以在这里提供帮助:

B) Plot anything on the client (use Javascript to plot charts). B)在客户端上绘制任何内容(使用Javascript绘制图表)。 There are some Javascript libraries which may help you: 有一些Javascript库可以帮助您:

Generally, A is easier and more accessible, but B can produce more eye-candy. 通常,A更容易访问,但B可以产生更多的糖果。 If you need interactive charts, you should choose B. 如果需要交互式图表,则应选择B。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM