1) I have an custom class that inherit ScheduleAppointment class and inside my class I have custom properties to which I'm making binding in my custom AppointmentTemplate view. The problem is that when I select an appointment in calendar there is no border around selected appointment (when I use my custom class), but when I use your class the border is there, and I can see it. What can I do to have the border around selected appointment in calendar when I use my custom class?There is my code:public class LocalScheduleAppointmentData : ScheduleAppointment
{
public LocalScheduleAppointmentData() : base() { }
public string MyProperty { get; set; }
}
...and my template:
<syncfusion:SfSchedule.AppointmentTemplate>
<DataTemplate x:DataType="localData:LocalScheduleAppointmentData">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Rectangle Grid.Column="0"
Fill="{x:Bind Status.Brush}"
Width="6" />
<Rectangle Grid.Column="1"
Fill="{x:Bind AppointmentBackground}" />
<StackPanel Grid.Column="1"
Padding="4,2">
<TextBlock Text="{x:Bind MyProperty}"
Foreground="White"
TextTrimming="CharacterEllipsis" />
</StackPanel>
</Grid>
</DataTemplate>
</syncfusion:SfSchedule.AppointmentTemplate>
2) And the second question is about MinorTickLabel FontWeight. In scheduler when I set the FontWeight there is changing the date FontWeight from every day header. I checked your documentation from site but there is nothing about changing FontWeight at MinorTickLabel, only stroke or dash. Is there any possibility to do that? To be more clear I will attach at this topic an image with what I have to change.
Thank you!