When is next update or release due?

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
den
Newbie
Newbie
Posts: 15
Joined: Wed Jan 30, 2008 12:00 am

When is next update or release due?

Post by den » Fri Apr 04, 2008 6:48 pm

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

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

Post by Narcís » Mon Apr 07, 2008 10:18 am

Hi Dennis,

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

den
Newbie
Newbie
Posts: 15
Joined: Wed Jan 30, 2008 12:00 am

Post by den » Mon Apr 07, 2008 12:23 pm

Excellent! I will anxiously await!

Cheers,

Dennis

moelski
Advanced
Posts: 212
Joined: Mon Apr 23, 2007 12:00 am
Location: Germany
Contact:

Post by moelski » Tue Apr 08, 2008 3:25 pm

Hi Narcis,
but we expect to have a maintenance release ready by the beginning of May
Sounds great ...

Will it include some new gauges ?
And what are the addition features (if available)?

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

Post by Narcís » Tue Apr 08, 2008 3:31 pm

Hi Dominik,

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

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

Post by Narcís » Fri Apr 11, 2008 9:45 am

Hello everyone!

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);
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.
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

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

Post by Narcís » Tue May 20, 2008 9:22 am

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).

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

moelski
Advanced
Posts: 212
Joined: Mon Apr 23, 2007 12:00 am
Location: Germany
Contact:

8.03 ?

Post by moelski » Wed Jun 04, 2008 8:12 am

Hi Narcis,

I read this in another posting:
I updated to TeeChart 8.03 (TeeChart8.03Delphi2007.exe Jun 02, 2008 23:42).
I take a look into my customer area ... There is only 8.02.

So is the 8.03 ready for use?

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

Post by Narcís » Wed Jun 04, 2008 8:40 am

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.
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