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
Sorting of Errorbar-Series
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
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:
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.
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;
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 |
Instructions - How to post in this forum |