Hi,
I'm using month view with the property showweeknumber and i would like to show the iso week number instead of the normal week.
|
<syncfusion:SfScheduler x:Name="Schedule"
ItemsSource="{Binding Appointments}"
FirstDayOfWeek="Monday"
ViewType="Month">
<syncfusion:SfScheduler.MonthViewSettings>
<syncfusion:MonthViewSettings ShowWeekNumber="True">
<syncfusion:MonthViewSettings.MonthCellTemplate>
<DataTemplate>
<Border Background="White">
<TextBlock HorizontalAlignment="Center" Foreground="Black" Text="{Binding DateTime.DayOfYear}"/>
</Border>
</DataTemplate>
</syncfusion:MonthViewSettings.MonthCellTemplate>
</syncfusion:MonthViewSettings>
</syncfusion:SfScheduler.MonthViewSettings>
</syncfusion:SfScheduler> |
Hi,
Unfortunately no.
What i would like to do is show the week number based on the IsoWeek rule https://en.wikipedia.org/wiki/ISO_week_date .
So this is an example of what we would like to have.