Page 1 of 1

Stacking and different axes problem?

Posted: Tue Feb 20, 2007 12:02 pm
by 9090593
Is it possible to have different stacks for different vertical axes?

For instance if I have two line series using the left axis and two different series using the right axis, can I have the line series stacked on the left axis and the series on the right axis separately stacked or not stacked at all?

Currently I get the strange situation whereby the two axes have different ranges, but all series are stacked together whichever axis they are originally assigned to so there is an inconsistency.

This gets worse if there are any custom axes.

Posted: Tue Feb 20, 2007 12:24 pm
by narcis
Hi Edinburgh Mike,

Line series doesn't allow different stack groups as bar series does. However, some series can be stacked and some of them none, for example:

Code: Select all

			line1.Stacked = Steema.TeeChart.Styles.CustomStack.Stack;
			line2.Stacked = Steema.TeeChart.Styles.CustomStack.Stack;
			line3.Stacked = Steema.TeeChart.Styles.CustomStack.None;
			line4.Stacked = Steema.TeeChart.Styles.CustomStack.None;
I will also add your request to our wish-list to be considered for inclusion in future releases.