手册上讲:memo可以用分号隔开,形成2组以上的序列,但我测试未成功。[]
但又在faq上看到:
2.26. How to make the TChart with several series?
You can'tdo
this in designer. You need to write some code in Delphi.
Create TChart or TDBChart, fill it out;
put the empty TfrChartView to the report;
write the following code in the TfrReport.OnBeforePrint event handler:
if View.Name = 'Chart1' then
TfrChartView(View).AssignChart(your_Delphi_chart)
建议试试faq上提供的实现方法。