Hi
I noticed a regression from version 2. When saving a chart to a jpeg there is a always a border surrounding the jpeg even if the chart itself doesnt have a border. This didnt happen in version 2.
This causes a problem in documents that i create that have the charts embedded.
I have uploaded a sample TChartV3Tester.zip that save a chart into jpeg (just click the save jpeg button)
Please take the second upload , the first one has an illegal reference.
Please help
Thanks
Save Chart to Jpeg Border problem (regression from version2)
Hello gcrnd,
I could reproduce your problem and I have added to the list of Bug Report with number [TF02014091] we will try to fix it for next versions of TeeChart .NET.
Thanks, for noticed.
I could reproduce your problem and I have added to the list of Bug Report with number [TF02014091] we will try to fix it for next versions of TeeChart .NET.
Thanks, for noticed.
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi qcrnd,
This is a high priority issue already.
This is a high priority issue already.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Hello gcrnd,
We found that this bug [TF02014091], is not a bug, and you could solve your issue using next code:
I hope you will help.
Thanks,
We found that this bug [TF02014091], is not a bug, and you could solve your issue using next code:
Code: Select all
private void button1_Click(object sender, EventArgs e)
{
Steema.TeeChart.Export.JPEGFormat jpeg = Chart.Export.Image.JPEG;
jpeg.Width *= 2;
jpeg.Height *= 2;
bool oldBuffer = Chart.Graphics3D.UseBuffer;
Chart.Graphics3D.UseBuffer = false;
jpeg.Save(@"C:\test2.jpg");
Chart.Graphics3D.UseBuffer = oldBuffer;
}
I hope you will help.
Thanks,
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |