problem with x axis time
Re: problem with x axis time
Hello,
Thanks for confirming it.
I've added it to the public tracker:
http://bugs.teechart.net/show_bug.cgi?id=1701
Thanks for confirming it.
I've added it to the public tracker:
http://bugs.teechart.net/show_bug.cgi?id=1701
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
-
- Newbie
- Posts: 36
- Joined: Mon Oct 24, 2016 12:00 am
Re: problem with x axis time
Hi
I see it has logged as been fixed
is there a place I can download that fix ?
thanks
I see it has logged as been fixed
is there a place I can download that fix ?
thanks
Re: problem with x axis time
Hello,
I'm afraid I can't tell you when the next maintenance release will be published. We'll try to publish TeeChart VCL versions quarterly.
I'm afraid I can't tell you when the next maintenance release will be published. We'll try to publish TeeChart VCL versions quarterly.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
-
- Newbie
- Posts: 36
- Joined: Mon Oct 24, 2016 12:00 am
Re: problem with x axis time
oh,..so I am not able to get a hot fix?
also I only have just realised that the version for Berlin, even the first release, has this issue on OSX (but not on windows)
am I able to use the Seattle version in Berlin?
also I only have just realised that the version for Berlin, even the first release, has this issue on OSX (but not on windows)
am I able to use the Seattle version in Berlin?
Re: problem with x axis time
Hello weatherdisplay,
But, if you want use the Teechart Pro VCL/FMX for Rad Studio 10 Seattle you need only install the packages for that version.
Thanks in advance
I would like inform you if you're using the TeeChart Pro VCL/FMX binary version, the hotfix will be published for next maintenance release. But, in the case, if you're using TeeChart Pro VCL/FMX source code we can send the code that fix the bug. Do you confirm if you use source code?oh,..so I am not able to get a hot fix?
Do you want use the Seattle packages in Rad Studio IDE 10.1 Berlin? If it is the case, isn't possible.am I able to use the Seattle version in Berlin?
But, if you want use the Teechart Pro VCL/FMX for Rad Studio 10 Seattle you need only install the packages for that version.
Thanks in advance
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 |
-
- Newbie
- Posts: 36
- Joined: Mon Oct 24, 2016 12:00 am
Re: problem with x axis time
Hi
I used to have the source code version..but not currently
I used to have the source code version..but not currently
Re: problem with x axis time
Hello weatherdisplay,
Many thanks for the information. The hotfix will be published in few month with next maintenance release. As Yeray told above we try to publish a new maintenance release every quarterly.
Feel free contact us if you have any questions.
Thanks in advance
Many thanks for the information. The hotfix will be published in few month with next maintenance release. As Yeray told above we try to publish a new maintenance release every quarterly.
Feel free contact us if you have any questions.
Thanks in advance
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 |
-
- Newbie
- Posts: 36
- Joined: Mon Oct 24, 2016 12:00 am
Re: problem with x axis time
Hi
I have installed the latest version (April)
but I have not seen any change in behaviour for this particular bug?
I have installed the latest version (April)
but I have not seen any change in behaviour for this particular bug?
-
- Newbie
- Posts: 36
- Joined: Mon Oct 24, 2016 12:00 am
Re: problem with x axis time
just to clarify, its OK in VCL but not FMX (running on OSX)
Re: problem with x axis time
Hello,
I've just tried the code in the ticket #1701 in TeeChart v2017.21 using RAD 10.2 and it seems to work fine for me on OSX:
I've just tried the code in the ticket #1701 in TeeChart v2017.21 using RAD 10.2 and it seems to work fine for me on OSX:
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
-
- Newbie
- Posts: 36
- Joined: Mon Oct 24, 2016 12:00 am
Re: problem with x axis time
that's good to know
maybe I do not have the latest version installed for some reason
is there an easy way to find out what version is installed?
maybe I do not have the latest version installed for some reason
is there an easy way to find out what version is installed?
Re: problem with x axis time
Hello,
- Design-time packages: Go to "Component \ Install Packages..." and check the TeeChart packages in the list. A trick to see the full path of a package is to select it, click "Remove", read the path, and cancel the remove operation. - Design-time packages: Open a form containing a form (or create it), right click with the mouse on the chart and read the "About" version. - Runtime packages (Delphi): Check the library path: - Runtime packages (C++Builder): Check the include and the library paths: - Runtime packages (Delphi VCL): Run this code in a project:
- Runtime packages (Delphi FMX): Run this code in a project:
- Runtime packages (C++Builder VCL): Run this code in a project:
- Runtime packages (C++Builder FMX): Run this code in a project:
More about How to set paths here.
There are several ways to do this, but note that, after several TeeChart installs, you can have a TeeChart version installed as design time package but the paths could be referencing a path to another version, so the later is used to compile and run the project:weatherdisplay wrote:maybe I do not have the latest version installed for some reason
is there an easy way to find out what version is installed?
- Design-time packages: Go to "Component \ Install Packages..." and check the TeeChart packages in the list. A trick to see the full path of a package is to select it, click "Remove", read the path, and cancel the remove operation. - Design-time packages: Open a form containing a form (or create it), right click with the mouse on the chart and read the "About" version. - Runtime packages (Delphi): Check the library path: - Runtime packages (C++Builder): Check the include and the library paths: - Runtime packages (Delphi VCL): Run this code in a project:
Code: Select all
uses TeeConst;
//...
ShowMessage(TeeMsg_Version);
Code: Select all
uses FMXTee.Constants;
//...
ShowMessage(TeeMsg_Version);
Code: Select all
#include <TeeConst.hpp>
//...
ShowMessage(TeeMsg_Version);
Code: Select all
#include <FMXTee.Constants.hpp>
//...
ShowMessage(TeeMsg_Version);
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
-
- Newbie
- Posts: 36
- Joined: Mon Oct 24, 2016 12:00 am
Re: problem with x axis time
HI
for the first method way
I have 924.bl installed and not 925.bpl
even though I did install the latest update
?
for the first method way
I have 924.bl installed and not 925.bpl
even though I did install the latest update
?
-
- Newbie
- Posts: 36
- Joined: Mon Oct 24, 2016 12:00 am
Re: problem with x axis time
note, I am using Delphi Berlin
so maybe that is why the different file name?
(i.e its in the folder Delphi 24)
so maybe that is why the different file name?
(i.e its in the folder Delphi 24)
-
- Newbie
- Posts: 36
- Joined: Mon Oct 24, 2016 12:00 am
Re: problem with x axis time
OK, it is working OK when using Tokyo
but not Berlin
(even though I installed the same version update into Berlin as well)
but not Berlin
(even though I installed the same version update into Berlin as well)