Skip to main content
All docs
V25.1
  • ColorStyleSettings Class

    Contains color settings for conditional formatting.

    Namespace: DevExpress.DashboardCommon

    Assembly: DevExpress.Dashboard.v25.1.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