Skip to Content

graphique

from GChartWrapper import *
 
# création d'un graphique Google Chart et renvoi de l'URL
def macharte(data):
    G = Line(data)
    G.size(250,100)
    G.color('76A4FB') 
    G.axes.type('xy')
    G.grid(20.0,25.0,1,0) 
    return G.url