SeriesViewBase.Color Property
Gets or sets the color of the series.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v24.2.dll
NuGet Package: DevExpress.Charts
#Declaration
[XtraChartsLocalizableCategory(XtraChartsCategory.Appearance)]
public Color Color { get; set; }
#Property Value
Type | Description |
---|---|
Color | A Color structure that specifies the color of the series. |
#Remarks
Use the Color property to specifies the series’ color. Note that this color can affect the appearance of all the series elements (such as series labels or data point markers, for instance) if their colors are not defined explicitly.
#Example
This example demonstrates how to individually set the color of auto-created series at runtime. To accomplish this, the ChartControl.BoundDataChanged event should be handled in the following way.
using System;
using System.Drawing;
using System.Windows.Forms;
using DevExpress.XtraCharts;
// ...
private void chartControl1_BoundDataChanged(object sender, EventArgs e) {
for(int i = 0; i < chartControl1.Series.Count; i++) {
BarSeriesView view = (BarSeriesView)chartControl1.Series[i].View;
view.Color = Color.Blue;
view.FillStyle.FillMode = FillMode.Gradient;
((GradientFillOptionsBase)view.FillStyle.Options).Color2 = Color.Beige;
}
}
#Related GitHub Examples
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Color property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.