Chart.Palette Property

Definition

Gets or sets the palette for the Chart control.

public:
 property System::Web::UI::DataVisualization::Charting::ChartColorPalette Palette { System::Web::UI::DataVisualization::Charting::ChartColorPalette get(); void set(System::Web::UI::DataVisualization::Charting::ChartColorPalette value); };
[System.ComponentModel.Bindable(true)]
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.Attribute)]
public System.Web.UI.DataVisualization.Charting.ChartColorPalette Palette { get; set; }
[<System.ComponentModel.Bindable(true)>]
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.Attribute)>]
member this.Palette : System.Web.UI.DataVisualization.Charting.ChartColorPalette with get, set
Public Property Palette As ChartColorPalette

Property Value

A ChartColorPalette enumeration value that determines the palette to be used.

Attributes

Remarks

A palette is used to automatically assign colors to data elements if both of the following conditions have been met:

  • the data points themselves do not have colors assigned to them.

  • the data series that the data points belong to also does not have an assigned color.

If no series or data point colors are explicitly specified, the colors used depend on the chart type and the Chart object's palette or the palette of an associated series, if one is specified.

Note

If the Palette property for both the Chart and Series objects is set to None, and no color is assigned to the relevant data series or data points, the data points will not be drawn, and will be displayed as "empty" areas.

Applies to