Hi folks,
This is one of my column definition in my RadGridView. Below the data column, there will be a footer contains the Aggregate values. But the values are not left align, there is always a space ahead of the values. How can i remove this space or make it left align?
<telerikGridView:GridViewDataColumn Header="% Growth" FooterTextAlignment="Left" DataFormatString="{}{0:C0}" DataMemberBinding="{Binding Growth}" IsReorderable="False" IsFilterable="False" >
<telerikGridView:GridViewDataColumn.AggregateFunctions>
<data:AverageFunction SourceField="Growth" ResultFormatString="{}{0:C0}" />
</telerikGridView:GridViewDataColumn.AggregateFunctions>
</telerikGridView:GridViewDataColumn>
In addition, if the definition is as follows,
<telerikGridView:GridViewDataColumn Header="Q1" FooterTextAlignment="Left" DataMemberBinding="{Binding Q1Name}" IsReorderable="False" IsFilterable="False" >
<telerikGridView:GridViewDataColumn.Footer>
<TextBlock Text="Total" HorizontalAlignment="Left" ></TextBlock>
</telerikGridView:GridViewDataColumn.Footer>
</telerikGridView:GridViewDataColumn>
the "Total" text box will be left align. This is correct.
Help me please, thanks in advance.
George
This is one of my column definition in my RadGridView. Below the data column, there will be a footer contains the Aggregate values. But the values are not left align, there is always a space ahead of the values. How can i remove this space or make it left align?
<telerikGridView:GridViewDataColumn Header="% Growth" FooterTextAlignment="Left" DataFormatString="{}{0:C0}" DataMemberBinding="{Binding Growth}" IsReorderable="False" IsFilterable="False" >
<telerikGridView:GridViewDataColumn.AggregateFunctions>
<data:AverageFunction SourceField="Growth" ResultFormatString="{}{0:C0}" />
</telerikGridView:GridViewDataColumn.AggregateFunctions>
</telerikGridView:GridViewDataColumn>
In addition, if the definition is as follows,
<telerikGridView:GridViewDataColumn Header="Q1" FooterTextAlignment="Left" DataMemberBinding="{Binding Q1Name}" IsReorderable="False" IsFilterable="False" >
<telerikGridView:GridViewDataColumn.Footer>
<TextBlock Text="Total" HorizontalAlignment="Left" ></TextBlock>
</telerikGridView:GridViewDataColumn.Footer>
</telerikGridView:GridViewDataColumn>
the "Total" text box will be left align. This is correct.
Help me please, thanks in advance.
George