Toggle navigation
ReportBuilder Support Forums
Categories
Discussions
Activity
Sign In
Home
›
General
ReportBuilder 22.06 now available including Delphi 12.2 support!
New Blog Posts: Merging Reports -
Part 1
and
Part 2
TeeChart and drawing into canvas
rbuser
June 2001
edited June 2001
in
General
Hi
I use teechart in my report to generate a timetable. Now i need to draw into
the the canvas of the teechart.
Does anybody know how to do that?
Thanks in advance.
Regards Robert
Comments
rbuser
June 2001
edited June 2001
> I use teechart in my report to generate a timetable. Now i need to draw
into
You could create a metafile canvas from the TChart, then write on the
metafile.
lMetafile := FChart.TeeCreateMetafile(True, lRect);
lMetafile.Canvas....
then only show the metafile, not the TChart.
HTH,
Ed Dressel
Team DM
This discussion has been closed.
Comments
into
You could create a metafile canvas from the TChart, then write on the
metafile.
lMetafile := FChart.TeeCreateMetafile(True, lRect);
lMetafile.Canvas....
then only show the metafile, not the TChart.
HTH,
Ed Dressel
Team DM