Expression Column
GridViewExpressionColumn derives from the GridViewColumn class and allows you to display various calculations in RadGridView itself. The GridViewExpressionColumn can be sorted and grouped like any other type of column.
For the purposes of this example, we will use the objects and viewmodel defined in examples 1 and 2.
Example 1: The Product class
Example 2: The viewmodel
With this data setup, we can bind the GridViewExpressionColumn as shown in Example 3.
Example 3: Define GridViewExpressionColumn in XAML
Example 4: Set Expression for GridViewExpressionColumn in code.
The values displayed in GridViewExpressionColumn will be updated automatically when a concerned property on the data item changes.
More information about expressions could be found here.