I am wondering when we can expect the next 'update' or release to the Tchart VCL?
There are two 'bugs' that have the potential to hold up my project deployment. 1. the inability to set the margins in print preview and 2. the fact that nulls in data series for stacked bar charts leave the latter series bars 'hanging' in the air.
Not to complain too much, however. Your product is great! I wouldn't be able to develop without it!
Cheers,
Dennis
When is next update or release due?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Dennis,
We don't have a date planned yet but we expect to have a maintenance release ready by the beginning of May.
We don't have a date planned yet but we expect to have a maintenance release ready by the beginning of May.
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 |
Hi Narcis,
Will it include some new gauges ?
And what are the addition features (if available)?
Sounds great ...but we expect to have a maintenance release ready by the beginning of May
Will it include some new gauges ?
And what are the addition features (if available)?
Greetz Dominik
http://www.logview.info
http://www.logview.info
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Dominik,
I'm sorry but I'm not able to give you this information at the moment.
I'm sorry but I'm not able to give you this information at the moment.
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:
Hello everyone!
Dennis,
Regarding the print preview margins issue, you can change them like this:
Does this sovle the problem at your end?
Dominik,
As an update to your request, I don't think new series styles will be included. It will mostly consist on bug fixes.
Dennis,
Regarding the print preview margins issue, you can change them like this:
Code: Select all
Chart1.PrintProportional := false;
Chart1.PrintMargins := Rect(2,2,2,70);
Dominik,
As an update to your request, I don't think new series styles will be included. It will mostly consist on bug fixes.
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:
Hi Dennis,
The maintenance release is being finalised. We have reviewed the issues you posted:
1. Print preview margins issue, works fine using our current v8 sources we are able to set print preview margins at designtime and runtime.
2. Stacked bars with null points, it can be reproduced using code below using commented AddNull line instead. However, it works fine using code below and in such cases you should use AddNull(0).
The maintenance release is being finalised. We have reviewed the issues you posted:
1. Print preview margins issue, works fine using our current v8 sources we are able to set print preview margins at designtime and runtime.
2. Stacked bars with null points, it can be reproduced using code below using commented AddNull line instead. However, it works fine using code below and in such cases you should use AddNull(0).
Code: Select all
procedure TForm1.FormCreate(Sender: TObject);
begin
Series1.FillSampleValues(5);
Series2.Add(random*1000);
Series2.Add(random*1000);
//Series2.AddNull(random*1000);
Series2.AddNull(0);
Series2.Add(random*1000);
Series2.Add(random*1000);
Series3.FillSampleValues(5);
Series3.MultiBar:=mbStacked;
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 |
8.03 ?
Hi Narcis,
I read this in another posting:
So is the 8.03 ready for use?
I read this in another posting:
I take a look into my customer area ... There is only 8.02.I updated to TeeChart 8.03 (TeeChart8.03Delphi2007.exe Jun 02, 2008 23:42).
So is the 8.03 ready for use?
Greetz Dominik
http://www.logview.info
http://www.logview.info
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Dominik,
Yes, that customer casually found those installers but they haven't been made public. We are currently doing some tests here and will announce it here when they are available, it should be very soon. You can also subscribe to our RSS feed for new release announcements.
Thanks in advance.
Yes, that customer casually found those installers but they haven't been made public. We are currently doing some tests here and will announce it here when they are available, it should be very soon. You can also subscribe to our RSS feed for new release announcements.
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 |