good day,
I would just like to know how to se the Color Each Line option, that one can set in the chart editor, for a Series in code.
There is no option for exampl: Series(0).ColorEachLine
If I do not disable this option, all the lines in my chart are black.
Using C#.
thanks
Dawie
How Color Each Line for a series in code
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: How Color Each Line for a series in code
Hi Dawie,
That's because you need to typecast your series to line series, for example:
That's because you need to typecast your series to line series, for example:
Code: Select all
axTChart1.Series(0).asLine.ColorEachLine = true;
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 |
Re: How Color Each Line for a series in code
aha!
awesome, thanks
awesome, thanks