Problem of Printing Axis' Labels and Titles
Problem of Printing Axis' Labels and Titles
I have one existing application which was based on V505. After I updated the version to 2013, the printed labels/titles are off the axis to somewhere at the top-left corner and the font size is way smaller; the chart's titles are not lined up either, and the font size is smaller; border lines are drawn at the right and bottom.
- Attachments
-
- It was perfect to using TeeChart 5.
- DVT_TeeChart_5_Print.png (241.37 KiB) Viewed 29013 times
-
- Printing has problems including save it to PDF file.
- DVT_print_issue.png (122.27 KiB) Viewed 28978 times
Re: Problem of Printing Axis' Labels and Titles
Hello,
This looks very similar to this:
http://www.teechart.net/support/viewtop ... 113#p64113
Could you please try if disabling GDI+ gives better looking prints?
This looks very similar to this:
http://www.teechart.net/support/viewtop ... 113#p64113
Could you please try if disabling GDI+ gives better looking prints?
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Problem of Printing Axis' Labels and Titles
Hi there,
Thanks for your help. Setting GDI+ to false is a workaround for the font and size of printed axis labels and titles, but the right and bottom lines still appear on the printed sheet (no lines on the screen).
I'm currently using TeeChart2013_0_1_1ActiveX3264, though the file version of TeeChart2013.ocx says "2012.0.0.8". I downloaded the latest version from your website which was TeeChart2013_0_1_4ActiveX3264. However, I got an error message saying "Error while activating license: 1168" while I was trying to do update it by using my license number, which I got only a couple of months ago (last Dec.).
Thanks for your help. Setting GDI+ to false is a workaround for the font and size of printed axis labels and titles, but the right and bottom lines still appear on the printed sheet (no lines on the screen).
I'm currently using TeeChart2013_0_1_1ActiveX3264, though the file version of TeeChart2013.ocx says "2012.0.0.8". I downloaded the latest version from your website which was TeeChart2013_0_1_4ActiveX3264. However, I got an error message saying "Error while activating license: 1168" while I was trying to do update it by using my license number, which I got only a couple of months ago (last Dec.).
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Problem of Printing Axis' Labels and Titles
Hello,
Thanks for your feedback.
Thanks in advance.
Thanks for your feedback.
Could you please attach a simple example example project we can run "as-is" to reproduce the problem here?DVT wrote: Thanks for your help. Setting GDI+ to false is a workaround for the font and size of printed axis labels and titles, but the right and bottom lines still appear on the printed sheet (no lines on the screen).
I see no reason why the license number you use to log into this forum should give an error activating the license. Please contact our Sales Dept. at sales at steema dot com with your licensing details and any activation number the installer may provide.DVT wrote: I'm currently using TeeChart2013_0_1_1ActiveX3264, though the file version of TeeChart2013.ocx says "2012.0.0.8". I downloaded the latest version from your website which was TeeChart2013_0_1_4ActiveX3264. However, I got an error message saying "Error while activating license: 1168" while I was trying to do update it by using my license number, which I got only a couple of months ago (last Dec.).
Thanks in advance.
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 |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Problem of Printing Axis' Labels and Titles
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 |
Re: Problem of Printing Axis' Labels and Titles
Today I tried your latest version (TeeChart Pro Activex Control v2014, v2014.0.0.2 Released on 20th November 2014). It looked like the issues were still not solved. I used it in an MFC project in Visual Studio 2012 (Win 7).
The attached shows the problems:
1. Axis's name (or title): it was printed at the top-left corner far away from the axis (should at the left-middle close to the axis's labels), if set GDI+ as true.
2. Axis's labels (numbers): they were to close to the plot (overlapped), if set GDI+ as true.
3. Axis's name (or tile): it was to close to the axis's labels and overlapped, if set GDI+ as false.
4. Extra lines: one lien on each of the bottom and the right edge, no matter GDI+ is set as true or false.
5. And the titles were still messed up (see the previous attachment DVT_print_issue.png)
The screen and preview were perfect.
The attached shows the problems:
1. Axis's name (or title): it was printed at the top-left corner far away from the axis (should at the left-middle close to the axis's labels), if set GDI+ as true.
2. Axis's labels (numbers): they were to close to the plot (overlapped), if set GDI+ as true.
3. Axis's name (or tile): it was to close to the axis's labels and overlapped, if set GDI+ as false.
4. Extra lines: one lien on each of the bottom and the right edge, no matter GDI+ is set as true or false.
5. And the titles were still messed up (see the previous attachment DVT_print_issue.png)
The screen and preview were perfect.
- Attachments
-
- problems circled in red
- GDIplusTrue.JPG (421.56 KiB) Viewed 28673 times
-
- problems circled in red
- GDIplusFalse.JPG (486.78 KiB) Viewed 28681 times
Re: Problem of Printing Axis' Labels and Titles
Hello,
I've created a simple application in VB6 with just a Chart and a Commander on the form and this code:
I've printed the chart to a pdf virtual printer (PDFCreator) through the "Print" button in the commander.
Then I've opened the editor through the commander and switched from GDI+ to GDI at the "Chart\3D\Render" tab.
Finally, I've closed the editor and printed the chart again with the same tool and the same "Print" button in the commander.
Both charts look correct in the pdf files: Could you please check if printing to a pdf virtual printer also reproduces the problem for you?
I've created a simple application in VB6 with just a Chart and a Commander on the form and this code:
Code: Select all
Private Sub Form_Load()
TeeCommander1.ChartLink = TChart1.ChartLink
TChart1.Aspect.View3D = False
TChart1.Legend.Visible = False
TChart1.AddSeries scLine
TChart1.Series(0).FillSampleValues 100
TChart1.Axis.Left.Title.Caption = "Depth (m)"
TChart1.Axis.Bottom.Title.Caption = "Offset (m)"
End Sub
Then I've opened the editor through the commander and switched from GDI+ to GDI at the "Chart\3D\Render" tab.
Finally, I've closed the editor and printed the chart again with the same tool and the same "Print" button in the commander.
Both charts look correct in the pdf files: Could you please check if printing to a pdf virtual printer also reproduces the problem for you?
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Problem of Printing Axis' Labels and Titles
Yes. The problems are still persist.
1. After using the new TeeChart2014 (and 2013), the title on print out are not aligned properly, no matter set GDI+ true or false. It looks the exactly the same on screen as before.
1. On the pdf print out, it is the exactly the same result as on a paper print, the y-axis title is printed at the top-left corner and the font is way smaller and hard to see.
See the attachment.
1. After using the new TeeChart2014 (and 2013), the title on print out are not aligned properly, no matter set GDI+ true or false. It looks the exactly the same on screen as before.
1. On the pdf print out, it is the exactly the same result as on a paper print, the y-axis title is printed at the top-left corner and the font is way smaller and hard to see.
See the attachment.
- Attachments
-
- set GDI+ true: y-axis title is printed at the top-left corner and the font is way small.
- print_to_pdf_GDIplus_true.png (13.01 KiB) Viewed 28663 times
-
- set GDI+ false: y-axis title looks OK but the title alignment is not nice
- print_to_pdf_GDIplus_false.png (9.32 KiB) Viewed 28664 times
-
- screen capture - no matter set GDI+ true or false - it is the same as before moving to TeeChart2013 or 2014
- screen.png (8.24 KiB) Viewed 28663 times
Re: Problem of Printing Axis' Labels and Titles
Hi,
Thanks in advance.
Could you please send us a simple example project we can run as-is to reproduce the problem here?DVT wrote: 1. After using the new TeeChart2014 (and 2013), the title on print out are not aligned properly, no matter set GDI+ true or false. It looks the exactly the same on screen as before.
Thanks in advance.
Good. At least we'll be able to make the necessary tests without wasting paperDVT wrote: 1. On the pdf print out, it is the exactly the same result as on a paper print, the y-axis title is printed at the top-left corner and the font is way smaller and hard to see.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Problem of Printing Axis' Labels and Titles
Looks like the latest version (2014.0.0.2) fixed most of the problems. However, there is still one issue on print out - one line on each left and bottom. The attached sample project shows that. To build the project, the files in Tee_Files_0 and TeeFiles_1 need to put in the project's Tee_Files folder which is empty in the MFCApplication1.zip file.
The result will be followed due to the limitation to the files attached.
The result will be followed due to the limitation to the files attached.
- Attachments
-
- Tee_Files_1.zip
- TeeChart files included in the project
- (313.43 KiB) Downloaded 1266 times
-
- Tee_Files_0.zip
- TeeChart files included in the project
- (302.35 KiB) Downloaded 1285 times
-
- MFCApplication1.zip
- Sample Project - the TeeChart include files are attached with Tee_Files_0 and Tee_Files_1 due to the file size limitation
- (88.16 KiB) Downloaded 1172 times
Re: Problem of Printing Axis' Labels and Titles
The print out issue: extra lines on right and bottom.
- Attachments
-
- smaple print.png (49.3 KiB) Viewed 28589 times
Re: Problem of Printing Axis' Labels and Titles
Hello,
You can set the Outer Bevel to none as noted here.
In your case, you can do as follows to save the status of the Outer Bevel and restore it after printing:
You can set the Outer Bevel to none as noted here.
In your case, you can do as follows to save the status of the Outer Bevel and restore it after printing:
Code: Select all
void CMFCApplication1View::OnFilePrint()
{
if (m_pChart.GetPrinter().ShowSetupDlg()) {
int tmp = m_pChart.GetPanel().GetBevelOuter();
m_pChart.GetPanel().SetBevelOuter(0);
m_pChart.GetPrinter().PrintChart();
m_pChart.GetPanel().SetBevelOuter(tmp);
}
}
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Problem of Printing Axis' Labels and Titles
Thanks. That works.
I tried printing my chart with setting the GDI+ to TRUE and FALSE. It looks nicer on the print out when setting the GDI+ to FALSE than setting it to TRUE. In what scenario is GDI+ supposed to be set to TRUE?
I tried printing my chart with setting the GDI+ to TRUE and FALSE. It looks nicer on the print out when setting the GDI+ to FALSE than setting it to TRUE. In what scenario is GDI+ supposed to be set to TRUE?
Re: Problem of Printing Axis' Labels and Titles
Hello,
In general we'd probably use GDI+ to create visually attractive charts but GDI if the performance is in compromise. Also note OpenGL, that takes a bit to initialize but it's both pretty and fast after it.
It's up to you. We find GDI+ draws smoother lines and texts but some customers find it blurry.DVT wrote:I tried printing my chart with setting the GDI+ to TRUE and FALSE. It looks nicer on the print out when setting the GDI+ to FALSE than setting it to TRUE. In what scenario is GDI+ supposed to be set to TRUE?
In general we'd probably use GDI+ to create visually attractive charts but GDI if the performance is in compromise. Also note OpenGL, that takes a bit to initialize but it's both pretty and fast after it.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |