Stacking and different axes problem?

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Edinburgh Mike
Newbie
Newbie
Posts: 1
Joined: Thu Mar 09, 2006 12:00 am
Location: Edinburgh

Stacking and different axes problem?

Post by Edinburgh Mike » Tue Feb 20, 2007 12:02 pm

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.

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 Feb 20, 2007 12:24 pm

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