Hi
Is there any way to specify the text alignment for a GridSummaryColumn?
The column it is summarising has a TextAlignment of End but the summary column appears to have an alignment of Start.
Also, the Summary Column has a Format property containing two sets of curly braces
Format="{}{Sum:c}"
What is the first pair of brackets for?
Here is my XAML
<xForms:SfDataGrid.TableSummaryRows>
<xForms:GridTableSummaryRow Name="TableSummary"
ShowSummaryInRow="False">
<xForms:GridTableSummaryRow.SummaryColumns>
<xForms:GridSummaryColumn Name="ExSummary"
MappingName="AmountExGst"
Format="{}{Sum:c}"
SummaryType="DoubleAggregate" />
</xForms:GridTableSummaryRow.SummaryColumns>
</xForms:GridTableSummaryRow>
</xForms:SfDataGrid.TableSummaryRows>