I have a column of numbers for which I create a summary definition. The position of this summary is directly under the same column (SummaryPosition.UseSummaryPositionField). The problem is that the number column is right aligned but the summary cell itself - since it's a string - is left aligned.
This looks unprofessional. I would like the summary for this column to be right aligned. Is there a simple way of doing this?
Hi temp0 :)
adding the following to xamDataGrid.Resources shall solve this.
<
Style TargetType="{x:Type igDP:SummaryResultPresenter}">
<Setter Property="HorizontalAlignment" Value
="Right" />
</Style>
Best Regards
But... what if I don't want all the summaries right aligned? Only summaries for some specific fields?
Sweet! Thanks! I didn't realise it would be that simple.