ColorScaleFormat Class
Contains formatting settings for a Color Scales conditional format.
Namespace: DevExpress.Xpf.Core.ConditionalFormatting
Assembly: DevExpress.Xpf.Core.v24.2.dll
NuGet Package: DevExpress.Wpf.Core
Declaration
Related API Members
The following members return ColorScaleFormat objects:
Remarks
The ColorScaleFormat class instances are used to set the GridControl’s ColorScaleFormatCondition.Format and PivotGridControl’s ColorScaleFormatCondition.Format properties.
The following image shows the color scale formatting.
The code sample below illustrates how to create the color scale conditional formatting rule with a custom format in markup for GridControl.
<dxg:TableView.FormatConditions>
<dxg:ColorScaleFormatCondition FieldName="Sales">
<dx:ColorScaleFormat ColorMin="White" ColorMiddle="Green" ColorMax="Red"/>
</dxg:ColorScaleFormatCondition>
</dxg:TableView.FormatConditions>
The code sample below illustrates how to define the same conditional formatting rule in code-behind for GridControl.
var salesFormatCondition = new ColorScaleFormatCondition() {
FieldName = "Sales",
Format = new ColorScaleFormat() {
ColorMin = Colors.White,
ColorMiddle = Colors.Green,
ColorMax = Colors.Red
}
};
view.FormatConditions.Add(salesFormatCondition);