私は多くのreportlabグラフの例を見てきました。グラフの生成は問題ではなく、PDFでグラフを表示する方法がわからないようです。
コードは次のとおりです。
buffer = StringIO()
p = canvas.Canvas(buffer, pagesize = letter)
##### Beginning of code in question
d = Drawing(200, 100)
pc = Pie()
pc.x = 65
pc.y = 15
pc.width = 70
pc.height = 70
pc.data = [10,20,30,40,50,60]
pc.labels = ['a','b','c','d','e','f']
pc.slices.strokeWidth=0.5
pc.slices[3].popout = 10
pc.slices[3].strokeWidth = 2
pc.slices[3].strokeDashArray = [2,2]
pc.slices[3].labelRadius = 1.75
pc.slices[3].fontColor = colors.red
d.add(pc)
p.drawPath(d) ### THIS DOES NOT WORK, but need something similar
#####End of Code in Question
p.showPage() #Page Two
p.save() # Saves the PDF and Returns with Response\
pdf = buffer.getvalue()
buffer.close()
response.write(pdf)
return response
これが私がテキストを表示する方法です。p.setFillColorRGB(1,1,1)ヘッダー= p.beginText(100、765)header.textLine( "ページ見出しテキスト")p.drawText(header)