Beispiel #1
0
#!/usr/bin/env python

from GChartWrapper import Pie

chart = Pie([20, 10])
chart.title('Hello GChartWrapper')
chart.label('hello', 'world')
chart.save('pie_en.png')
Beispiel #2
0
#!/usr/bin/env python3

from GChartWrapper import Pie

chart = Pie([20, 10])
chart.title('안녕 GChartWrapper')
chart.label('안녕', '세상')
chart.save('pie_ko.png')