Hi,
I want to change the space between the rows im my xamgrid. I want to downsize the space,
How can I do that?
Thx.
Djumana
If you want to reduce the spacing of the cells you can set the following style:
<ig:XamGrid> <ig:XamGrid.CellStyle> <Style TargetType="ig:CellControl"> <Setter Property="Padding" Value="5,1" /> </Style> </ig:XamGrid.CellStyle> ...</ig:XamGrid>
This will reduce the padding of the cells.
You can further reduce the height of the rows using the RowHeight property of the XamGrid.
I hope that this will help you.