Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2320
Right align summary cells
posted

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?

Parents
No Data
Reply
  • 685
    Verified Answer
    posted

    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

Children