|
por lo visto la solución no es tan chapucera, puesto que ellos mismos la proponen, buscando en la página que te he comentado arriba, se puede encontrar lo siguiente:
Q: 2.26. How to make the TChart with several series?
A: You can't do 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)
|