Hi Grant,
This is possible with the DataGrid. An example of this is shown in the documentation which can be found here. In the first example on this topic, the StatRow was added to the GroupConfiguration's footer, which is not what you want. What you could do, is take your DataTemplate which contains the StatRow + StatCells and add it to the FixedFooters of your view. For example:
XAML
-------------------
<xcdg:DataGridControl.View>
<xcdg:TableflowView>
<xcdg:TableflowView.FixedFooters>
<DataTemplate>
<xcdg:StatRow>
<xcdg:StatCell FieldName="UnitPrice"
ResultPropertyName="unitprice_sum"/>
<xcdg:StatCell FieldName="Quantity"
ResultPropertyName="quantity_sum"/>
<xcdg:StatCell FieldName="OrderID"
ResultPropertyName="orderid_count"/>
</xcdg:StatRow>
</DataTemplate>
</xcdg:TableflowView.FixedFooters>
</xcdg:TableflowView>
</xcdg:DataGridControl.View>
-------------------
Marc
Developer in Technical Support
Xceed - Multi-talented components - http://xceed.com