Hi Rupesh,
Thank you for using syncfusion products.
#Regarding Adjusting width of appointment in day view
We have checked the reported query from our end. you can achieve your requirement with the help of AppointmentTemplate property in schedule. Please refer to the following code snippet for your reference.
Code snippet
|
<schedule:SfSchedule.AppointmentTemplate>
<DataTemplate>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="0.5*"/>
<ColumnDefinition Width="0.5*"/>
</Grid.ColumnDefinitions>
<Label Text="{Binding EventName}" VerticalOptions="FillAndExpand" Grid.Column="0" BackgroundColor="{Binding Color}" />
</Grid>
</DataTemplate>
</schedule:SfSchedule.AppointmentTemplate> |
Please refer to the tested sample in the following location.
Please let us know if you have any concerns.
Regards,
SaiGanesh Sakthivel