TeeChart Axis Text Values
TeeChart Axis Text Values
Please note the bottom axis text values. All values are correct except what should be "0" is displayed as some very small number. Is there any way to fix this?
- Attachments
-
- Note Bottom Axis "0" value
- Example.jpg (113.33 KiB) Viewed 7824 times
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: TeeChart Axis Text Values
Hi Roy,
If I understand this correctly this is the same issue you reported here, isn't it? If so, could you please answer the questions I made there?
Thanks in advance.
If I understand this correctly this is the same issue you reported here, isn't it? If so, could you please answer the questions I made there?
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 |
Re: TeeChart Axis Text Values
I'm using version 6 of the TeeChart in Borland Builder 4.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: TeeChart Axis Text Values
Hi Roy,
Can you please attach a simple example project we can run "as-is" to reproduce the problem here? Have you tried using the events I suggested?
Thanks in advance.
Can you please attach a simple example project we can run "as-is" to reproduce the problem here? Have you tried using the events I suggested?
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 |
Re: TeeChart Axis Text Values
Create a chart with a left axis and bottom axis. Set the bottom axis minimum to -1.0, set the bottom axis maximum to +1.0, turn bottom axis automatic to off. Do not load data. This should duplicate what I have shown in the JPEG without the data series. Is there any way I can access the axis text to make changes at runtime?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: TeeChart Axis Text Values
Hi Roy,
That is using line below, which works fine here both in v8 and v2010. v6 is pretty old and many bug fixes, enhancements and new features have been implemented since.
With this line and adding a series at runtime without populating it I get this chart:
Thanks in advance.
Create a chart with a left axis and bottom axis. Set the bottom axis minimum to -1.0, set the bottom axis maximum to +1.0, turn bottom axis automatic to off. Do not load data. This should duplicate what I have shown in the JPEG without the data series.
That is using line below, which works fine here both in v8 and v2010. v6 is pretty old and many bug fixes, enhancements and new features have been implemented since.
Code: Select all
Chart1->Axes->Bottom->SetMinMax(-1, 1);
Yes, using the events I told you in your other post. Have you tried using them? Do you have any problem with those events? You'll find more information on how to use them in tutorial 4. Tutorials can be found at TeeChart's program group or at installation Docs folder.Is there any way I can access the axis text to make changes at runtime?
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 |
Re: TeeChart Axis Text Values
Thanks for your advice, I am trying the OnGetAxisLabel() to see if this will correct my issue. Will let you know the results when I have them later today.
Re: TeeChart Axis Text Values
Again, thanks for your help. Using the OnGetAxisLabel(), I have been able to correct this issue and all appears to be functioning very well. Thanks.