wpf-118921-controls-and-libraries-data-grid-conditional-formatting-conditional-formats-formatting-date-time-values.md
The Date Occurring conditional format allows you to highlight date-time values that fall into a specified interval.
The image below shows the grid column whose Order Date cells are yellow if their values belong to the last month interval.
Refer to the Formatting Values Using Comparison Rules topic to learn how to format cells comparing cell values with static values. The Formatting Values Using Custom Conditions topic describes how to use custom conditions.
This topic contains the following sections.
Create the FormatCondition class instance and specify the following settings to create a conditional format in code:
Specify the expression that defines the comparison logic by setting the FormatConditionBase.Expression property.
Use the FormatConditionBase.FieldName property to specify the column’s field name to which to apply the conditional format.
Specify the target cells’ formatting:
Add the resulting FormatCondition instance to the TableView.FormatConditions (or TreeListView.FormatConditions) collection.
The following code sample illustrates how to define a conditional format in markup:
<dxg:TableView.FormatConditions>
<dxg:FormatCondition Expression="DateDiffMonth([Order Date], LocalDateTimeToday()) = 1" FieldName="Order Date" PredefinedFormatName="YellowFillWithDarkYellowText" />
</dxg:TableView.FormatConditions>
The code sample below illustrates how to define the same conditional format in code-behind:
var orderDateFormatCondition = new FormatCondition() {
Expression = "DateDiffMonth([Order Date], LocalDateTimeToday()) = 1",
FieldName = "Order Date",
PredefinedFormatName = "YellowFillWithDarkYellowText"
};
view.FormatConditions.Add(orderDateFormatCondition);
Dim orderDateFormatCondition = New FormatCondition() With {
.Expression = "DateDiffMonth([Order Date], LocalDateTimeToday()) = 1",
.FieldName = "Order Date",
.PredefinedFormatName = "YellowFillWithDarkYellowText"
}
view.FormatConditions.Add(orderDateFormatCondition)
See Also