Skip to main content

Formatting Changing Values

  • 4 minutes to read

The Data Update conditional format allows you to visualize changing values in real time:

CFDataUpdateExample

Run Demo: Data Update Animation

Note

Set the TableView.AllowDataUpdateFormatConditionMenu (or TreeListView.AllowDataUpdateFormatConditionMenu) property to true to enable creating the data update conditional formats.

This topic consists of the following sections:

Adding Rules in Code

Create the DataUpdateFormatCondition class instance and specify the following settings to create the Data Update conditional format in code:

The following code sample illustrates how to define a conditional format in markup:

<dxg:TableView.FormatConditions>
   <dxg:DataUpdateFormatCondition Rule="Increase" FieldName="Change" PredefinedFormatName="GreenFillWithDarkGreenText"/>
</dxg:TableView.FormatConditions>

The code sample below illustrates how to define the same conditional format in code-behind:

var changeFormatCondition = new DataUpdateFormatCondition() {
   Rule = DataUpdateRule.Increase,
   FieldName = "Change",
   PredefinedFormatName = "GreenFillWithDarkGreenText"
};
view.FormatConditions.Add(changeFormatCondition);

Data Update Animation

The Data Update conditional format works with animation effects. To change animation effects, create the DataUpdateAnimationSettings class instance with required settings, and assign the resulting object to the DataUpdateFormatCondition.AnimationSettings property.

View Example: Use Format Conditions to Animate Data Changes

The following code sample illustrates how to change animation effects in markup:

<dxg:TableView.FormatConditions>
   <dxg:DataUpdateFormatCondition FieldName="DeltaPrice" Rule="Always" PredefinedFormatName="LightRedFillWithDarkRedText">
      <dxg:DataUpdateFormatCondition.AnimationSettings>
         <dx:DataUpdateAnimationSettings EasingMode="Linear" HideDuration="0:0:2" HoldDuration="0:0:6" ShowDuration="0:0:2" />      
      </dxg:DataUpdateFormatCondition.AnimationSettings>
   </dxg:DataUpdateFormatCondition>
</dxg:TableView.FormatConditions>

The code sample below illustrates how to change animation effects in code-behind:

var deltaPriceFormatCondition = new DataUpdateFormatCondition() {
   FieldName = "DeltaPrice",
   Rule = DataUpdateRule.Always,
   PredefinedFormatName = "LightRedFillWithDarkRedText",
   AnimationSettings = new DataUpdateAnimationSettings() {
      EasingMode = AnimationEasingMode.Linear,
      HideDuration = new Duration(new TimeSpan(0, 0, 2)),
      HoldDuration = new Duration(new TimeSpan(0, 0, 6)),
      ShowDuration = new Duration(new TimeSpan(0, 0, 2))
   }
};
view.FormatConditions.Add(deltaPriceFormatCondition);

Use the following grid view properties to define animation duration for all data update conditional formats within the current grid’s view:

TableView.DataUpdateAnimationShowDuration (TreeListView.DataUpdateAnimationShowDuration)

Gets or sets the data update formatting show duration.

TableView.DataUpdateAnimationHoldDuration (TreeListView.DataUpdateAnimationHoldDuration)

Specifies the data update formatting hold duration.

TableView.DataUpdateAnimationHideDuration (TreeListView.DataUpdateAnimationHideDuration)

Gets or sets the data update formatting hide duration.

Adding Rules Using Conditional Formatting Menu

  1. Select the Data Update Rules item in the Conditional Formatting Menu.
  2. In the invoked dialog, choose the data update rule (Change, Increase, or Decrease) to determine which cells should be formatted.
  3. Choose a format to define the applied rule’s visual appearance. The conditional formatting menu allows you to use only predefined formats stored within the TableView.PredefinedFormats (or TreeListView.PredefinedFormats) collection.
  4. Enable the apply format to the entire row option to apply a conditional format to the entire row, if necessary.

CFDataUpdateMenu

Adding Rules Using Conditional Formatting Rules Manager

  1. Click the New Rule… in the Conditional Formatting Rules Manager.
  2. Select the Format only changing values rule type in the invoked New Formatting Rule dialog.
  3. Choose the data update rule to determine which cells should be formatted (Changed, Increased, or Decreased). Specify the duration of time over which data update formatting is applied.
  4. To define the visual appearance of the applied rule, click the Format button, and specify the required settings in the invoked Format Cells dialog. See the Format Cells Dialog Window section of the Conditional Formatting Rules Manager topic to learn more.

CFDataUpdateManager

Limitations

The Data Update conditional format is not supported in the multiple selection mode.

See Also