"A Line Plot Markers" #Autogenerated by ReportLab guiedit do not edit from rlextra.graphics.quickchart import QuickChart from reportlab.graphics.shapes import Drawing, _DrawingEditorMixin class Drawing_000(_DrawingEditorMixin,Drawing): ''' Line Plot Markers - with 3 series & data points as markers ''' def __init__(self,width=400,height=200,*args,**kw): Drawing.__init__(self,width,height,*args,**kw) self._add(self,QuickChart(),name='chart',validate=None,desc=None) self.chart.seriesNames = ('a', 'b', 'c') self.chart.xTitleText = 'Year' self.chart.yTitleText = 'Sales (000,000)' self.chart.height = 200 self.chart.categoryNames = ('1','2','3') self.chart.titleText = 'Line Plot Markers Chart' self.chart.chartType='lineplot_markers' self.width = 400 self.chart.data = [(2008, 2013), (80,60), (70, 75), (40, 60)] if __name__=="__main__": #NORUNTESTS Drawing_000().save(formats=['pdf'],outDir='.',fnRoot=None)