You are not logged in.
Pages: 1
Has anyone encountered the following problem? Is this a Chart flaw? And can it be solved somehow?
At the moment I simply forbade moving the axis outside the chart
How do I do this?
You can use the example code where "TGDIPages" will be displayed and the Chart will be inserted
Hello. First, thank you very much for providing a tool for creating PDF files
Question:
I add a TeeChart page to a pdf document sheet using the following method:
lPdf := TPdfDocumentGDI.Create;
for i := 1 to Chart0.Pages.Count do
Begin
lPage := lPdf.AddPage;
lPdf.VCLCanvas;
TPdfPageGDI(lPage).PageMetafile := Chart0.TeeCreateMetafile(false, Rect(150, 150, (lPdf.VCLCanvasSize.Width - 150), (lPdf.VCLCanvasSize.Height - 150)));
Chart0.NextPage;
End;
That is, I use "TPdfDocumentGDI"
You can create a table using "TGDIPages"
lPdf := TGDIPages.Create(self);
lPdf.BeginDoc;
lPdf.AddColumns([10,20,50]);
lPdf.AddColumnHeaders(['#','Two','Three'],true,true);
lPdf.EndDoc;
How do I combine these two differently created pages into one?
Pages: 1