- Axis.png (2.98 KiB) Viewed 10307 times
Right Axis Title issue
Right Axis Title issue
I just upgraded to the latest TeeChart. I am using Delphi XE8. My chart now has the right axis title shown underneath the right axis values (see png attached). Did not do that previously. I realize it must be a simple fix but I can't figure it out. Any help? Thanks.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Right Axis Title issue
Hi alexiat,
This is very similar to Bug #1173. I could reproduce the problem here using the code snippet below with the latest maintenance release. However, it works fine with our current sources. Since you are a source code customer I'm going to send you an email with a test version so that you can check if it solves the problem at your end.
This is very similar to Bug #1173. I could reproduce the problem here using the code snippet below with the latest maintenance release. However, it works fine with our current sources. Since you are a source code customer I'm going to send you an email with a test version so that you can check if it solves the problem at your end.
Code: Select all
uses VCLTee.Series;
procedure TForm1.FormCreate(Sender: TObject);
begin
Chart1.AddSeries(TLineSeries.Create(Self)).FillSampleValues;
Chart1.AddSeries(TLineSeries.Create(Self)).FillSampleValues;
Chart1.AddSeries(TLineSeries.Create(Self)).FillSampleValues;
Chart1[0].VertAxis:=aBothVertAxis;
Chart1.Axes.Right.Title.Text:='Right axis title';
Chart1.Chart3DPercent:=50;
end;
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: Right Axis Title issue
I am running into more frustration. If I add the path to the source code to my library I get a "Incompatible types: 'VCLTee.TeCanvas.TTeeCanvas' and 'TeCanvas.TTeeCanvas' on TTeeCanvas.TextOut(). I have uninstalled and reinstalled. I ran into this issue before and was why I wasn't using the source code.
Code compiles (and graph still isn't correct):
C:\Program Files (x86)\Steema Software\Steema TeeChart Pro VCL Source Code 2015.15\Source
C:\Program Files (x86)\Steema Software\Steema TeeChart Pro VCL 2015.15\Delphi22\Delphi22.win32\Lib
Code does not compile (and thus cannot test):
C:\Program Files (x86)\Steema Software\Steema TeeChart Pro VCL Source Code 2015.15\Source\VCL
C:\Program Files (x86)\Steema Software\Steema TeeChart Pro VCL Source Code 2015.15\Source
C:\Program Files (x86)\Steema Software\Steema TeeChart Pro VCL 2015.15\Delphi22\Delphi22.win32\Lib
Code compiles (and graph still isn't correct):
C:\Program Files (x86)\Steema Software\Steema TeeChart Pro VCL Source Code 2015.15\Source
C:\Program Files (x86)\Steema Software\Steema TeeChart Pro VCL 2015.15\Delphi22\Delphi22.win32\Lib
Code does not compile (and thus cannot test):
C:\Program Files (x86)\Steema Software\Steema TeeChart Pro VCL Source Code 2015.15\Source\VCL
C:\Program Files (x86)\Steema Software\Steema TeeChart Pro VCL Source Code 2015.15\Source
C:\Program Files (x86)\Steema Software\Steema TeeChart Pro VCL 2015.15\Delphi22\Delphi22.win32\Lib
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Right Axis Title issue
Hi alexiat,
You should not mix source code and binary packages. Sources I sent you today differ from those used to build the maintenance release binary packages and therefore it won't compile. You should remove all TeeChart packages and path references from RAD Studio and install from the sources I sent you today, using TeeRecompile.exe shipped with it.
You should not mix source code and binary packages. Sources I sent you today differ from those used to build the maintenance release binary packages and therefore it won't compile. You should remove all TeeChart packages and path references from RAD Studio and install from the sources I sent you today, using TeeRecompile.exe shipped with it.
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: Right Axis Title issue
Ran TeeRecompile and the source code fixed the issue. Thanks so much for your help.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Right Axis Title issue
Hi alexiat,
You're very welcome. I'm glad to hear that.
You're very welcome. I'm glad to hear that.
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 |