Contents of a RadzenGrid Column right justified and Title centered

414 Views Asked by At

I would like the contents of my column to be right justified and the title centered.

I tried this:

<RadzenDataGridColumn Property="BestD_Waarde"
                   TItem="WebOrderModelDetail"       
                   TextAlign="Radzen.TextAlign.Right"
                   FormatString="{0:N2}"
                   Width="60px">
                   <HeaderTemplate>
                       <div style="text-align: center !important;">Totaal</div>
                   </HeaderTemplate>

But the title remains right justified.

0

There are 0 best solutions below