from GChartWrapper import * # Call type first with the chxt # then call label and style in order, # label can contain None(s) G = Line( ['foobarbaz'] ) G.color('76A4FB') G.axes('xyrx') G.axes.label(0,'Foo', 'Bar', 'Baz') G.axes.style(0, '0000dd', 14) G.axes.label(1, None, '20K', '60K', '100K') G.axes.label(2, 'A', 'B', 'C') G.axes.label(3, None,'20','40','60','80')