Weird stacked BarSeries behaviour (V8.05.50522 Win32)
Posted: Thu Nov 18, 2010 11:22 am
Hello,
I´m encountering a weird BarSeries behaviour when using BarSeries in mbStacked mode. The chart shows holes when there is no data for a given position, let´s say I have 3 series with the following data:
then the result looks like this:
Screenshot
Any suggestions how to eliminate these "holes?
I´m encountering a weird BarSeries behaviour when using BarSeries in mbStacked mode. The chart shows holes when there is no data for a given position, let´s say I have 3 series with the following data:
Code: Select all
// no data for Y-Position 2
Series1->AddXY( 0, 1 );
Series1->AddXY( 1, 2 );
// no data for Y-Position 0
Series2->AddXY( 1, 3 );
Series2->AddXY( 2, 4 );
// no data for Y-Position 1
Series3->AddXY( 0, 5 );
Series3->AddXY( 2, 6 );
Screenshot
Any suggestions how to eliminate these "holes?