Why doesn't the FooterTextAlignment property in the following style work?
I tried also to set both FooterTextAlignment="Left" and FooterTextAlignment="Center" but nothing changed!!!
The style FooterCellStyle is:
Please help me
| <Teltrik:GridViewDataColumn FooterTextAlignment="Right" FooterCellStyle="{DynamicResource FooterCellStyle}" CellStyle="{DynamicResource RightAlignedCellStyle}" Width="120" DataMemberBinding="{Binding UnaTantum,Converter={StaticResource EuroConverter}, ConverterParameter=\{0:c\}}" > |
| <Teltrik:GridViewDataColumn.Header> |
| <StackPanel Margin="30,0,0,0" HorizontalAlignment="Center" Orientation="Vertical" > |
| <TextBlock HorizontalAlignment="Center" Text="Una Tantum"></TextBlock> |
| </StackPanel> |
| </Teltrik:GridViewDataColumn.Header> |
| <Teltrik:GridViewColumn.AggregateFunctions> |
| <telerikData:SumFunction ResultFormatString="{}{0:c}" SourceField="UnaTantum"></telerikData:SumFunction> |
| </Teltrik:GridViewColumn.AggregateFunctions> |
| </Teltrik:GridViewDataColumn> |
I tried also to set both FooterTextAlignment="Left" and FooterTextAlignment="Center" but nothing changed!!!
The style FooterCellStyle is:
| <Style x:Key="FooterCellStyle" TargetType="{x:Type GridView:GridViewFooterCell}"> |
| <Setter Property="FontWeight" Value="Bold"></Setter> |
| </Style> |
Please help me