Page 1 of 1

When is next update or release due?

Posted: Fri Apr 04, 2008 6:48 pm
by 10048147
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

Posted: Mon Apr 07, 2008 10:18 am
by narcis
Hi Dennis,

We don't have a date planned yet but we expect to have a maintenance release ready by the beginning of May.

Posted: Mon Apr 07, 2008 12:23 pm
by 10048147
Excellent! I will anxiously await!

Cheers,

Dennis

Posted: Tue Apr 08, 2008 3:25 pm
by 9349911
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)?

Posted: Tue Apr 08, 2008 3:31 pm
by narcis
Hi Dominik,

I'm sorry but I'm not able to give you this information at the moment.

Posted: Fri Apr 11, 2008 9:45 am
by narcis
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.

Posted: Tue May 20, 2008 9:22 am
by narcis
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;

8.03 ?

Posted: Wed Jun 04, 2008 8:12 am
by 9349911
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?

Posted: Wed Jun 04, 2008 8:40 am
by narcis
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.