Exported graph is incomplete
Posted: Thu Aug 18, 2016 8:16 am
There is only one half of the graph in the exported image when first a pdf and immediatly after a png image is exported.
The exported pdf is right, but the png is drawn incorrectly. TeeChart .net version 4.1.2016.5122
Incomplete Graph of the png image: The graph should lik this
Complete Graph of the png image: Code snippet:
Best regards
T. Harder
The exported pdf is right, but the png is drawn incorrectly. TeeChart .net version 4.1.2016.5122
Incomplete Graph of the png image: The graph should lik this
Complete Graph of the png image: Code snippet:
Code: Select all
Steema.TeeChart.Export.PDFFormat pdf = MyTeeChart.Chart.Export.Image.PDF;
pdf.Height = 1062;
pdf.Width = 1889;
pdf.Save(filename + ".pdf");
Steema.TeeChart.Export.PNGFormat png = MyTeeChart.Chart.Export.Image.PNG;
png.Height = 1062;
png.Width = 1889;
png.Save(filename + ".png");
T. Harder