Implementing Scheduler
The Syncfusion .NET MAUI Scheduler (SfScheduler) is a comprehensive scheduling component that provides nine different built-in view modes for displaying and managing appointments efficiently. It supports day, week, month, agenda, and timeline views with features like recurring appointments, drag-and-drop, resizing, resource management, and time zone support.
When to Use This Skill
Use this skill when you need to:
- Create scheduling or calendar applications in .NET MAUI
- Display appointments across different time periods (day, week, month)
- Implement recurring events with complex patterns
- Build resource-based scheduling systems (meeting rooms, employees, equipment)
- Create timeline views for project planning or horizontal scheduling
- Add drag-and-drop or resizable appointments
- Implement multi-timezone appointment management
- Create custom appointment editors or tooltips
- Build agenda views or month calendars
- Handle appointment reminders and notifications
- Support multiple calendar types (Gregorian, Hijri, etc.)
- Implement load-on-demand for large appointment datasets
Component Overview
The Scheduler control provides:
- 9 Built-in Views: Day, Week, WorkWeek, Month, Agenda, TimelineDay, TimelineWeek, TimelineWorkWeek, TimelineMonth
- Appointment Types: Normal, All-Day, Spanned, Recurring appointments with exception handling
- Interactive Features: Drag-and-drop, resizing, custom editors, tooltips, cell selection
- Resource Management: Multiple resources with grouping and customization
- Advanced Features: Time zones, localization, load-on-demand, reminders, special time regions
- Customization: Flexible styling, templates, working hours, date restrictions
Documentation and Navigation Guide
Getting Started
📄 Read: references/getting-started.md
When the user needs to:
- Install and set up the Syncfusion .NET MAUI Scheduler
- Register the scheduler handler in MauiProgram.cs
- Create their first scheduler with basic configuration
- Add simple appointments to the scheduler
- Understand view modes and basic properties
- Set up the initial project structure
- Import necessary NuGet packages
Appointments Management
📄 Read: references/appointments.md
When the user needs to:
- Create and configure appointments
- Map custom business objects to appointments
- Implement normal, all-day, or spanned appointments
- Create recurring appointments with patterns (daily, weekly, monthly, yearly)
- Use recurrence rules (RRULE syntax)
- Handle recurrence exceptions (skip or modify specific occurrences)
- Customize appointment properties (subject, notes, location, colors)
- Bind appointment sources to custom data collections
- Understand appointment rendering order
Day, Week, and WorkWeek Views
📄 Read: references/day-week-views.md
When the user needs to:
- Configure Day, Week, or WorkWeek views
- Set the number of visible days
- Customize time intervals between time slots
- Configure time rulers and time labels
- Set up working hours and non-working hours
- Create special time regions (blocking time intervals)
- Customize time slot appearance
- Configure view headers
- Handle time slot sizing and customization
Timeline Views
📄 Read: references/timeline-views.md
When the user needs to:
- Implement Timeline Day, Week, WorkWeek, or Month views
- Display appointments on a horizontal time axis
- Configure visible days in timeline views
- Set time intervals for timeline slots
- Customize viewport height
- Configure time rulers in timeline views
- Create horizontal scheduling interfaces
- Handle scrolling and navigation in timeline views
Month and Agenda Views
📄 Read: references/month-agenda-views.md
When the user needs to:
- Configure Month view with appointments
- Customize month cells appearance
- Set up Agenda view for list-based appointment display
- Customize agenda view date and time formats
- Handle appointment grouping by weeks
- Configure selected date display
- Customize month view indicators
- Combine different view modes
Appointment Interactions
📄 Read: references/appointment-interactions.md
When the user needs to:
- Enable drag-and-drop for appointments
- Allow appointment resizing
- Create custom appointment editors
- Configure appointment tooltips
- Implement cell selection
- Customize selection appearance
- Handle interaction events (tap, drag, resize)
- Disable specific interactions
- Create custom editor forms
Resources and Calendar Types
📄 Read: references/resources-calendars.md
When the user needs to:
- Implement resource-based scheduling (rooms, employees, equipment)
- Add and configure multiple resources
- Group appointments by resources
- Customize resource headers and appearance
- Implement different calendar types (Gregorian, Hijri)
- Switch between calendar systems
- Handle resource-specific appointments
Navigation and Date Restrictions
📄 Read: references/navigation-restrictions.md
When the user needs to:
- Implement programmatic date navigation
- Set minimum and maximum date restrictions
- Prevent navigation beyond specific dates
- Customize header view and date formats
- Handle view switching (between Day, Week, Month, etc.)
- Configure navigation buttons
- Implement custom navigation controls
Advanced Features
📄 Read: references/advanced-features.md
When the user needs to:
- Implement load-on-demand for large datasets
- Configure appointment reminders
- Handle multiple time zones
- Convert appointments between time zones
- Use scheduler events (Tapped, SelectionChanged, ViewChanged)
- Implement liquid glass effect for visual enhancement
- Handle appointment loading efficiently
- Create event handlers for user interactions
Localization
📄 Read: references/localization.md
When the user needs to:
- Localize scheduler UI to different languages
- Customize date and time formats
- Configure culture-specific settings
- Implement RTL (right-to-left) support
- Customize day and month names
- Handle regional date formatting
1---2name: syncfusion-maui-scheduler3description: Implements Syncfusion .NET MAUI Scheduler (SfScheduler). Use when creating scheduling applications, calendar views, appointment management, event planning, or resource scheduling in .NET MAUI. Covers scheduler views, appointment management, recurring events, and timeline views.4---5
6# Implementing Scheduler
7
8The Syncfusion .NET MAUI Scheduler (SfScheduler) is a comprehensive scheduling component that provides nine different built-in view modes for displaying and managing appointments efficiently. It supports day, week, month, agenda, and timeline views with features like recurring appointments, drag-and-drop, resizing, resource management, and time zone support.
9
10## When to Use This Skill
11
12Use this skill when you need to:
13- Create scheduling or calendar applications in .NET MAUI
14- Display appointments across different time periods (day, week, month)
15- Implement recurring events with complex patterns
16- Build resource-based scheduling systems (meeting rooms, employees, equipment)
17- Create timeline views for project planning or horizontal scheduling
18- Add drag-and-drop or resizable appointments
19- Implement multi-timezone appointment management
20- Create custom appointment editors or tooltips
21- Build agenda views or month calendars
22- Handle appointment reminders and notifications
23- Support multiple calendar types (Gregorian, Hijri, etc.)
24- Implement load-on-demand for large appointment datasets
25
26## Component Overview
27
28The Scheduler control provides:
29- **9 Built-in Views**: Day, Week, WorkWeek, Month, Agenda, TimelineDay, TimelineWeek, TimelineWorkWeek, TimelineMonth
30- **Appointment Types**: Normal, All-Day, Spanned, Recurring appointments with exception handling
31- **Interactive Features**: Drag-and-drop, resizing, custom editors, tooltips, cell selection
32- **Resource Management**: Multiple resources with grouping and customization
33- **Advanced Features**: Time zones, localization, load-on-demand, reminders, special time regions
34- **Customization**: Flexible styling, templates, working hours, date restrictions
35
36## Documentation and Navigation Guide
37
38### Getting Started
39📄 **Read:** [references/getting-started.md](references/getting-started.md)
40
41When the user needs to:
42- Install and set up the Syncfusion .NET MAUI Scheduler
43- Register the scheduler handler in MauiProgram.cs
44- Create their first scheduler with basic configuration
45- Add simple appointments to the scheduler
46- Understand view modes and basic properties
47- Set up the initial project structure
48- Import necessary NuGet packages
49
50### Appointments Management
51📄 **Read:** [references/appointments.md](references/appointments.md)
52
53When the user needs to:
54- Create and configure appointments
55- Map custom business objects to appointments
56- Implement normal, all-day, or spanned appointments
57- Create recurring appointments with patterns (daily, weekly, monthly, yearly)
58- Use recurrence rules (RRULE syntax)
59- Handle recurrence exceptions (skip or modify specific occurrences)
60- Customize appointment properties (subject, notes, location, colors)
61- Bind appointment sources to custom data collections
62- Understand appointment rendering order
63
64### Day, Week, and WorkWeek Views
65📄 **Read:** [references/day-week-views.md](references/day-week-views.md)
66
67When the user needs to:
68- Configure Day, Week, or WorkWeek views
69- Set the number of visible days
70- Customize time intervals between time slots
71- Configure time rulers and time labels
72- Set up working hours and non-working hours
73- Create special time regions (blocking time intervals)
74- Customize time slot appearance
75- Configure view headers
76- Handle time slot sizing and customization
77
78### Timeline Views
79📄 **Read:** [references/timeline-views.md](references/timeline-views.md)
80
81When the user needs to:
82- Implement Timeline Day, Week, WorkWeek, or Month views
83- Display appointments on a horizontal time axis
84- Configure visible days in timeline views
85- Set time intervals for timeline slots
86- Customize viewport height
87- Configure time rulers in timeline views
88- Create horizontal scheduling interfaces
89- Handle scrolling and navigation in timeline views
90
91### Month and Agenda Views
92📄 **Read:** [references/month-agenda-views.md](references/month-agenda-views.md)
93
94When the user needs to:
95- Configure Month view with appointments
96- Customize month cells appearance
97- Set up Agenda view for list-based appointment display
98- Customize agenda view date and time formats
99- Handle appointment grouping by weeks
100- Configure selected date display
101- Customize month view indicators
102- Combine different view modes
103
104### Appointment Interactions
105📄 **Read:** [references/appointment-interactions.md](references/appointment-interactions.md)
106
107When the user needs to:
108- Enable drag-and-drop for appointments
109- Allow appointment resizing
110- Create custom appointment editors
111- Configure appointment tooltips
112- Implement cell selection
113- Customize selection appearance
114- Handle interaction events (tap, drag, resize)
115- Disable specific interactions
116- Create custom editor forms
117
118### Resources and Calendar Types
119📄 **Read:** [references/resources-calendars.md](references/resources-calendars.md)
120
121When the user needs to:
122- Implement resource-based scheduling (rooms, employees, equipment)
123- Add and configure multiple resources
124- Group appointments by resources
125- Customize resource headers and appearance
126- Implement different calendar types (Gregorian, Hijri)
127- Switch between calendar systems
128- Handle resource-specific appointments
129
130### Navigation and Date Restrictions
131📄 **Read:** [references/navigation-restrictions.md](references/navigation-restrictions.md)
132
133When the user needs to:
134- Implement programmatic date navigation
135- Set minimum and maximum date restrictions
136- Prevent navigation beyond specific dates
137- Customize header view and date formats
138- Handle view switching (between Day, Week, Month, etc.)
139- Configure navigation buttons
140- Implement custom navigation controls
141
142### Advanced Features
143📄 **Read:** [references/advanced-features.md](references/advanced-features.md)
144
145When the user needs to:
146- Implement load-on-demand for large datasets
147- Configure appointment reminders
148- Handle multiple time zones
149- Convert appointments between time zones
150- Use scheduler events (Tapped, SelectionChanged, ViewChanged)
151- Implement liquid glass effect for visual enhancement
152- Handle appointment loading efficiently
153- Create event handlers for user interactions
154
155### Localization
156📄 **Read:** [references/localization.md](references/localization.md)
157
158When the user needs to:
159- Localize scheduler UI to different languages
160- Customize date and time formats
161- Configure culture-specific settings
162- Implement RTL (right-to-left) support
163- Customize day and month names
164- Handle regional date formatting
165