Page 1 of 1

Multiple Bar Problem

Posted: Thu Oct 13, 2005 4:58 pm
by 8443014
Hi,

I make a Chart with some TBarSeries, and I want to view any BarSerie in a diferent Z-Position. I try to use the multibar layout:

Series->MultiBar = Series::mbNone;

and it doesn't work, all the BarSeries are in the same Z-position. I'm looking for another property to change the Z-Position of the series but I don' find nothing :(

Someone can help me? Many thanks!

Posted: Fri Oct 14, 2005 8:00 am
by narcis
Hi Paitu,

It works fine here using the code below and TeeChart Pro v7.05 VCL which was posted to our Customer Download Area at the beginning of this week.

Code: Select all

void __fastcall TForm1::FormCreate(TObject *Sender)
{
        for(int i=0;i<Chart1->SeriesCount();i++)
                Chart1->Series[i]->FillSampleValues();

        Series1->MultiBar=Series::mbNone;
}

Posted: Fri Oct 14, 2005 1:50 pm
by 9333098
Narcis,

Was notification of this update posted somewhere ? I do not see it anywhere on the web site. Could a topic be posted in this forum in the future when new updates are released ?

Thanks,

Steve
narcis wrote:
It works fine here using the code below and TeeChart Pro v7.05 VCL which was posted to our Customer Download Area at the beginning of this week.

Posted: Fri Oct 14, 2005 2:14 pm
by narcis
Hi Steve,

You are right, it was only notified on our Version Info web page and in between lines as on this message you are quoting. We will try to follow your suggestion for future releases.