/+junk/pygooglechart-py3k

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/pygooglechart-py3k

« back to all changes in this revision

Viewing changes to examples/line.py

  • Committer: gak
  • Date: 2007-12-15 23:49:21 UTC
  • Revision ID: git-v1:90f95fe288d07bd21d68d0917cbd83a1874cd814
Added more metadata in setup.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
def xy_rect():
28
28
    chart = XYLineChart(settings.width, settings.height)
29
 
    chart.add_data([10, 90, 90, 10, 10])
30
 
    chart.add_data([10, 10, 90, 90, 10])
 
29
    chart.add_data([0, 100, 100, 0, 0])
 
30
    chart.add_data([0, 0, 100, 100, 0])
31
31
    chart.download('line-xy-rect.png')
32
32
 
33
33
def xy_circle():