From d05abfb5e51556eb6338c31ea08c949290cad3ce Mon Sep 17 00:00:00 2001 From: Sanjay Vikram Mariappan <154953240+sanjayvikramsf4373@users.noreply.github.com> Date: Mon, 16 Dec 2024 16:55:24 +0530 Subject: [PATCH] 925962 - Update scheduler Month View document. --- wpf/Scheduler/Month-View.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/wpf/Scheduler/Month-View.md b/wpf/Scheduler/Month-View.md index 5893b1c66..e285a6366 100644 --- a/wpf/Scheduler/Month-View.md +++ b/wpf/Scheduler/Month-View.md @@ -245,25 +245,20 @@ this.Schedule.MonthViewSettings.TrailingDaysVisibility = Visibility.Collapsed; ![WPF Scheduler month view Leading and Trailing Days Visibility](Month-View_Images/wpf-scheduler-leading-and-trailing-days-visibility.png) ## Change the number of visible weeks - The number of weeks visible in the month view can be changed by setting the `NumberOfVisibleWeeks` property of [MonthViewSettings](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Scheduler.MonthViewSettings.html) in the [`SfScheduler`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Scheduler.html). By default, 6 weeks are visible. {% tabs %} {% highlight xaml hl_lines="4" %} - - {% endhighlight %} {% highlight c# hl_lines="2" %} - this.Schedule.ViewType = SchedulerViewType.Month; this.Schedule.MonthViewSettings.NumberOfVisibleWeeks = 3; - {% endhighlight %} {% endtabs %}