"A Radar Chart" #Autogenerated by ReportLab guiedit do not edit from rlextra.graphics.quickchart import QuickChartDrawing from reportlab.lib.corp import black from reportlab.graphics.shapes import _DrawingEditorMixin class QuickPieChart01(_DrawingEditorMixin,QuickChartDrawing): """ Radar Chart """ def __init__(self,width=400,height=200,*args,**kw): QuickChartDrawing.__init__(self,width,height,*args,**kw) self.qc.chartType='radar' self.qc.titleText = 'Radar Chart' self.qc.data = [[100, 120, 240, 360], [410, 130, 150, 180]] self.qc.legendText = 'A','B' self.qc.legendFontColor = black self.qc.legendFontSize = 10 self.qc.legendPos = 'left' self.qc.seriesNames = ('A','B') self.qc.categoryNames = ('2009', '2010', '2011', '2012') if __name__=="__main__": #NORUNTESTS QuickPieChart01().save(formats=['pdf'],outDir='.',fnRoot=None)