Skip to main content
All docs
V23.2

ColorStyleSettings Class

Contains color settings for conditional formatting.

Namespace: DevExpress.DashboardCommon

Assembly: DevExpress.Dashboard.v23.2.Core.dll

NuGet Package: DevExpress.Dashboard.Core

Declaration

public class ColorStyleSettings :
    StyleSettingsBase,
    IBackColorStyleSettings,
    IStyleSettings,
    IXmlSerializableElement

Remarks

The ColorStyleSettings object allows you to specify appearance settings in the following ways:

The following code snippet turns Chart series points whose value is greater than the condition value green:

//...
FormatConditionValue valueCondition = new FormatConditionValue(DashboardFormatCondition.Greater, 3000);
valueCondition.StyleSettings = new ColorStyleSettings(Color.Green);

Inheritance

See Also