Chart.PaletteCustomColors Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.Web.UI.DataVisualization.Charting.ColorArrayConverter))]
public System.Drawing.Color[] PaletteCustomColors { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Web.UI.DataVisualization.Charting.ColorArrayConverter))>]
member this.PaletteCustomColors : System.Drawing.Color[] with get, set
Public Property PaletteCustomColors As Color()
Property Value
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 None.