TeeChart is blank
I have a report with a simple TeeChart Pie Chart on it using manual data.
Before I print I populate the series data with the following code.
TeeChart1.Chart.Series[0].Clear;
TeeChart1.Chart.Series[0].Add(MidWest.BidTons,'Midwest',RGB(184,204,228));
TeeChart1.Chart.Series[0].Add(Northeast.BidTons,'North',RGB(230,185,184));
TeeChart1.Chart.Series[0].Add(South.BidTons, 'South', RGB(234,241,221));
TeeChart1.Chart.Series[0].Add(West.BidTons, 'West', RGB(204,192,218));
When the report prints the chart is blank, just shows the line border
around the chart. The chart used to work, but this has happened after
upgrading to XE6 and RB 15.04. I have also downloaded the update for
TeeChart from Embarcadero that fixed an access violation.
John
Before I print I populate the series data with the following code.
TeeChart1.Chart.Series[0].Clear;
TeeChart1.Chart.Series[0].Add(MidWest.BidTons,'Midwest',RGB(184,204,228));
TeeChart1.Chart.Series[0].Add(Northeast.BidTons,'North',RGB(230,185,184));
TeeChart1.Chart.Series[0].Add(South.BidTons, 'South', RGB(234,241,221));
TeeChart1.Chart.Series[0].Add(West.BidTons, 'West', RGB(204,192,218));
When the report prints the chart is blank, just shows the line border
around the chart. The chart used to work, but this has happened after
upgrading to XE6 and RB 15.04. I have also downloaded the update for
TeeChart from Embarcadero that fixed an access violation.
John
This discussion has been closed.
Comments
Are all charts blank or just this one in this particular report? Are
you printing this chart as a bitmap rather than metafile using the
PrintMethod property? If so, there may be a patch available that will
solve this issue.
Please send an email to support@digital-metaphors.com requesting the
patch and we'll send it to you.
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Thank you for sending me the patch, it fixed my problem.
John