Sorting of Errorbar-Series

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
schafma
Newbie
Newbie
Posts: 10
Joined: Wed Jan 25, 2006 12:00 am

Sorting of Errorbar-Series

Post by schafma » Wed Jan 09, 2008 11:23 am

Hello,

i've an ErrorBar series with these datapoints-Labels

A1 B1 C1 A2 B2 C2 ..

which should be displayed as seperate Bars
(-->MultiBar = TeeChart.Styles.MultiBars.None)

and sorted as
A1 A2 A3 B1 B2 B3 ...
(--> SortByLabels( TeeChart.Styles.ValueListOrder.Ascending ) )

or optionally sorted as
A1 B1 C1 A2 B2 C2 ...

when I omit the SortByLabels command the bars are no longer seperated but grouped by there starting character (A1 A2) (B1 B2).

Is there any way to implement a user-defined sort alghorithm or to show the datapoints as seperate bars in the order i added them to the series?


Thanx,
Marcus

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Wed Jan 09, 2008 12:32 pm

Hi Marcus,

Are you different series for those bars or one single series? You may be interested in using bar series MultiBar property, for example:

Code: Select all

			bar1.MultiBar = Steema.TeeChart.Styles.MultiBars.SideAll;
If the problem persists, could you please send us a simple example project we can run "as-is" to reproduce the problem here?

You can either post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.

Thanks in advance.
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