Hi Muthu,
Thank you for contacting Syncfusion support.
Based on the provided information we have analyzed your requirement of “Reduce the space between the rows of the calendar”. As per calendar implementation month cell height will be calculated based on the number of weeks and available height of calendar, so your requirement can be achieved by reducing height of calendar parent layout.
Code Snippet:
XAML:
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="0.5*"/>
<RowDefinition Height="0.5*"/>
</Grid.RowDefinitions>
<calendar:SfCalendar x:Name="calendar"
Grid.Row="0"
SelectionMode="SingleSelection"
ViewMode="MonthView"
HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand">
</calendar:SfCalendar>
</Grid> |
We hope that this helps you. Please let us know if you need further assistance on this.
Regards,
Indumathi R