Skip to content

Commit e2c1770

Browse files
Merge pull request #3618 from syncfusion-content/APILinksMaster
Added API links for newly added features
2 parents a7e10f3 + d397d74 commit e2c1770

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

MAUI/Scheduler/resource-view.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -116,11 +116,12 @@ this.Scheduler.AppointmentsSource = appointment;
116116

117117
## Resource Grouping in Days View
118118

119-
In the day, week, and work week views, you can control whether dates are grouped under resources or resources are grouped under dates by using the `ResourceGroupType` property of the [`SchedulerResourceView`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.SchedulerResourceView.html#Syncfusion_Maui_Scheduler_SchedulerResourceView_Resources) class.
119+
In the day, week, and work week views, you can control whether dates are grouped under resources or resources are grouped under dates by using the [`ResourceGroupType`]
120+
(https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.SchedulerResourceView.html#Syncfusion_Maui_Scheduler_SchedulerResourceView_ResourceGroupType) property of the [`SchedulerResourceView`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.SchedulerResourceView.html#Syncfusion_Maui_Scheduler_SchedulerResourceView_Resources) class.
120121

121122
### Grouping by Resource
122123

123-
The `ResourceGroupType` is set to `Resource` by default. In this mode, the scheduler arranges the dates under each resource.
124+
The [`ResourceGroupType`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.SchedulerResourceView.html#Syncfusion_Maui_Scheduler_SchedulerResourceView_ResourceGroupType) is set to [`Resource`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.SchedulerResourceGroupType.html#Syncfusion_Maui_Scheduler_SchedulerResourceGroupType_Resource) by default. In this mode, the scheduler arranges the dates under each resource.
124125

125126
{% tabs %}
126127
{% highlight xaml tabtitle="MainPage.xaml" hl_lines="3" %}
@@ -147,7 +148,7 @@ this.Scheduler.ResourceView.ResourceGroupType = SchedulerResourceGroupType.Resou
147148

148149
### Grouping by Date
149150

150-
When the `ResourceGroupType` is set to `Date`, the scheduler arranges the resources under each date.
151+
When the [`ResourceGroupType`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.SchedulerResourceView.html#Syncfusion_Maui_Scheduler_SchedulerResourceView_ResourceGroupType) is set to [`Date`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.SchedulerResourceGroupType.html#Syncfusion_Maui_Scheduler_SchedulerResourceGroupType_Date), the scheduler arranges the resources under each date.
151152

152153
{% tabs %}
153154
{% highlight xaml tabtitle="MainPage.xaml" hl_lines="3" %}
@@ -174,7 +175,7 @@ this.Scheduler.ResourceView.ResourceGroupType = SchedulerResourceGroupType.Date;
174175

175176
## Visible Resource Count in Days View
176177

177-
The number of resources shown in the day, week, and work week views can be controlled using the `VisibleResourceCount` property of the [`SchedulerResourceView`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.SchedulerResourceView.html#Syncfusion_Maui_Scheduler_SchedulerResourceView_Resources) class. This lets you define how many resources are visible at a time.
178+
The number of resources shown in the day, week, and work week views can be controlled using the [`VisibleResourceCount`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.SchedulerResourceView.html#Syncfusion_Maui_Scheduler_SchedulerResourceView_VisibleResourceCount) property of the [`SchedulerResourceView`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.SchedulerResourceView.html#Syncfusion_Maui_Scheduler_SchedulerResourceView_Resources) class. This lets you define how many resources are visible at a time.
178179

179180
{% tabs %}
180181
{% highlight xaml tabtitle="MainPage.xaml" hl_lines="3" %}
@@ -203,12 +204,12 @@ this.Scheduler.ResourceView.VisibleResourceCount = 4;
203204
![Visible Resource Count in Days View in .NET MAUI Scheduler.](images/resource-view/visible-resource-count-for-resources-in-days-view-in-.net-maui-scheduler.png)
204205

205206
N>
206-
* When `VisibleResourceCount` is set to -1, the `SfScheduler` displays up to three resources. If the total number of resources is less than three, it displays all available resources.
207-
* When `VisibleResourceCount` is set to 0, the resource view layout is removed, and only the plain Scheduler view (e.g., Day view without resources) is shown.
207+
* When [`VisibleResourceCount`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.SchedulerResourceView.html#Syncfusion_Maui_Scheduler_SchedulerResourceView_VisibleResourceCount) is set to -1, the `SfScheduler` displays up to three resources. If the total number of resources is less than three, it displays all available resources.
208+
* When [`VisibleResourceCount`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.SchedulerResourceView.html#Syncfusion_Maui_Scheduler_SchedulerResourceView_VisibleResourceCount) is set to 0, the resource view layout is removed, and only the plain Scheduler view (e.g., Day view without resources) is shown.
208209

209210
## Resource Header Height in Days View
210211

211-
In the day, week, and work week views, resources are arranged horizontally. The height of the resource headers can be customized using the `ResourceHeaderHeight` property of the [`SchedulerResourceView`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.SchedulerResourceView.html#Syncfusion_Maui_Scheduler_SchedulerResourceView_Resources) class.
212+
In the day, week, and work week views, resources are arranged horizontally. The height of the resource headers can be customized using the [`ResourceHeaderHeight`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.SchedulerResourceView.html#Syncfusion_Maui_Scheduler_SchedulerResourceView_ResourceHeaderHeight) property of the [`SchedulerResourceView`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.SchedulerResourceView.html#Syncfusion_Maui_Scheduler_SchedulerResourceView_Resources) class.
212213

213214
{% tabs %}
214215
{% highlight xaml tabtitle="MainPage.xaml" hl_lines="3" %}

0 commit comments

Comments
 (0)