Link to home
Start Free TrialLog in
Avatar of aj85
aj85

asked on

QUICK REPORTS QRCHART QUESTION

I have a chart in my program that I want to have printed out how can I use the QRChart component to make this happen or do I need to do something else. Please answer ASAP if possible.
ASKER CERTIFIED SOLUTION
Avatar of ZifNab
ZifNab

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of aj85
aj85

ASKER


Ok, but how do I print that exact same chart do make all the same settings, or is there a way to link the two charts so that what is on the TChart will print on the QRChart?
You can't do something like this QRChart.Chart := Chart, because the chart property is read-only.
But, I think :
You can change the parentchart of the series to the QRChar I suppose.

 eg. Chart.Series[1].ParentChart := QRChar.

Regards, Zif.