Chart.PaletteCustomColors Property

Definition

Gets or sets an array of custom palette colors.

public:
 property cli::array <System::Drawing::Color> ^ PaletteCustomColors { cli::array <System::Drawing::Color> ^ get(); void set(cli::array <System::Drawing::Color> ^ value); };
[System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.DataVisualization.Charting.ColorArrayConverter))]
public System.Drawing.Color[] PaletteCustomColors { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.DataVisualization.Charting.ColorArrayConverter))>]
member this.PaletteCustomColors : System.Drawing.Color[] with get, set
Public Property PaletteCustomColors As Color()

Property Value

Color[]

An array of Color objects that represent the set of colors used for series on the chart.

Attributes

Remarks

If you need more than 16 colors or you want to apply your own colors to the chart, you must define a custom palette. A custom palette let you add your own colors in the order you want them to appear on the chart. This type of palette is especially helpful if the number of series in your chart is unknown at design time.

This property has no effect when the Palette property is not set to ChartColorPalette.None.

Applies to