An object of the ColorCollection type is returned by the CustomPalette.Colors property.

Example
This example demonstrates how to change the series point colors by using a custom palette. To do this, a CustomPalette is added to the chart's ChartControlBase.Palette. And, custom colors are specified via the CustomPalette.Colors property.
Window1.xaml |
<dxc:ChartControl.Palette>
<dxc:CustomPalette>
<dxc:CustomPalette.Colors>
<Color>Blue</Color>
<Color>Yellow</Color>
<Color>Magenta</Color>
</dxc:CustomPalette.Colors>
</dxc:CustomPalette>
</dxc:ChartControl.Palette>
|
System.Object
System.Collections.ObjectModel.Collection<System.Windows.Media.Color>
System.Collections.ObjectModel.ObservableCollection<System.Windows.Media.Color>
ColorCollection