Right Axis Title issue

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
alexiat
Newbie
Newbie
Posts: 5
Joined: Fri Jul 10, 2015 12:00 am

Right Axis Title issue

Post by alexiat » Tue Aug 04, 2015 5:57 pm

Axis.png
Axis.png (2.98 KiB) Viewed 9792 times
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.

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: Right Axis Title issue

Post by Narcís » Wed Aug 05, 2015 8:00 am

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.

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
Image Image Image Image Image Image
Instructions - How to post in this forum

alexiat
Newbie
Newbie
Posts: 5
Joined: Fri Jul 10, 2015 12:00 am

Re: Right Axis Title issue

Post by alexiat » Wed Aug 05, 2015 1:37 pm

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

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: Right Axis Title issue

Post by Narcís » Wed Aug 05, 2015 1:48 pm

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.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

alexiat
Newbie
Newbie
Posts: 5
Joined: Fri Jul 10, 2015 12:00 am

Re: Right Axis Title issue

Post by alexiat » Wed Aug 05, 2015 2:50 pm

Ran TeeRecompile and the source code fixed the issue. Thanks so much for your help.

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: Right Axis Title issue

Post by Narcís » Wed Aug 05, 2015 2:51 pm

Hi alexiat,

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
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply