Page 1 of 1

Sorting of Errorbar-Series

Posted: Wed Jan 09, 2008 11:23 am
by 9640089
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

Posted: Wed Jan 09, 2008 12:32 pm
by narcis
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.