I have a ultrachart control with type setuped in CompositeChart.
CompositeChart consist of two lines charts and two time numeric series.
Each of series displays on its line chart.
At the runtime user sees two lines with same color but expected it will be different.
We are using Infragistics 8.1. See attached file for more details.
With the code you can try something like:
// adding data
NumericTimeSeries series2 = new NumericTimeSeries();
series2.PEs.Add(new PaintElement(Color.Red));
In this case you need to set nothing to ColorModel.
It's very funny).
I have a function that receives two list of numeric series.
The numeric series of first list displays on the first line chart.
The numeric series of second list displays on the second line chart.
I need to set not same color for each line of charts automatically. I played with ColorModel properties and didn't get necessary result.
You can associate color with the series.