使用默认设置我有这样的结果:
问:有没有办法垂直绘制多个饼图?
答案 0 :(得分:4)
在TeeChart安装附带的功能演示中查看“All features \ Welcome!\ Chart styles \ Standard \ Pie \ Multiple Pies”中的示例(或下载预编译的演示here)
在其中,您将看到如何在系列“BeforeDrawValues
事件中定义系列要使用的矩形。即:
procedure TPieMultiple.Series1BeforeDrawValues(Sender: TObject);
begin
Chart1.ChartRect:=Rect(10,10,Chart1.Width div 2, Chart1.Height div 2);
end;