垂直绘制多个饼图?

时间:2014-01-20 14:01:53

标签: delphi teechart

使用默认设置我有这样的结果: enter image description here
问:有没有办法垂直绘制多个饼图?

1 个答案:

答案 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;