+ added separate frxTee package for TeeChart = ?
Hello,
In the readme file of FastReport 3.19 we see:
Changes in FastReport FastReport 3.19:
+ added separate frxTee package for TeeChart
I am using Borland C++ Builder 6 and it tells me package FastReport 3.0 Tee Components contains only one component called 'TfrxChartObject'. What is the purpsoe of this component?
Can it help me getting TCharts from form to the report itself instead of doing:
In the readme file of FastReport 3.19 we see:
Changes in FastReport FastReport 3.19:
+ added separate frxTee package for TeeChart
I am using Borland C++ Builder 6 and it tells me package FastReport 3.0 Tee Components contains only one component called 'TfrxChartObject'. What is the purpsoe of this component?
Can it help me getting TCharts from form to the report itself instead of doing:
void __fastcall TForm1::setChart(TfrxReport *frxReport, AnsiString object,TChart *chart)
{
 TfrxPictureView *Picture;
 TMetafile *metafile;
 Picture = (TfrxPictureView*)frxReport->FindObject(object);
 TRect rect(0,0,chart->Width,chart->Height);
 metafile = chart->TeeCreateMetafile(true,rect);
 Picture->Picture->Assign(metafile);
 delete metafile;
}