This question is locked. New answers and comments are not allowed.
Hi
I want to show the totals in the column footers.
Please see below code
I want to show the totals in the column footers.
Please see below code
<
nsc:TDataGridViewDataColumn Header="Total Cost" DataMemberBinding="{Binding TotalCost}" Width="100" DataFormatString="{}{0:c}">
<nsc:TDataGridViewDataColumn.AggregateFunctions>
<data:SumFunction Caption="Sum: " SourceField="TotalCost" FunctionName="Sum" />
</nsc:TDataGridViewDataColumn.AggregateFunctions>
/
nsc:TDataGridViewDataColumn>
But I am not seeing any total in the footer of the grid view.
I am assigned true for the ShowColumnFooter = true;
Can you please help me.