Skip to Content

graphique

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