Implementing .NET MAUI Date Time Slider
The Syncfusion .NET MAUI DateTime Slider (SfDateTimeSlider) is a highly interactive UI control for selecting a single DateTime value from a range of date/time values. It provides rich customization options for labels, ticks, tooltips, track, thumb, and dividers, making it ideal for temporal data selection in MAUI applications.
When to Use This Skill
Use this skill when user need to:
- Implement date selection with a slider interface in .NET MAUI applications
- Create time pickers or datetime range selectors with visual feedback
- Build temporal UI controls for selecting dates, times, or datetime values
- Customize slider appearance including track colors, thumb styling, labels, ticks, and tooltips
- Handle datetime value changes through events and commands in MVVM patterns
- Enable discrete selection with specific date/time steps (daily, monthly, yearly, hourly)
- Support RTL and accessibility with WCAG-compliant datetime sliders
- Add modern glass effects with the Liquid Glass Effect (.NET 10+)
This skill is essential when working with temporal data selection, calendar-based inputs, date range filtering, time scheduling interfaces, or any scenario requiring intuitive datetime value selection in .NET MAUI.
Component Overview
Key Features:
- DateTime Support: Select DateTime values with flexible range configuration
- Dual Orientation: Horizontal and vertical slider orientations
- Rich Labeling: Customizable date format labels with active/inactive states
- Ticks & Dividers: Visual indicators for major/minor intervals
- Interactive Tooltip: Shows selected value during interaction
- Discrete Mode: Step-based selection with configurable intervals
- Visual Customization: Full control over colors, sizes, fonts, and styles
- Events & Commands: Value change tracking and MVVM command support
- Visual State Manager: Support for enabled/disabled states
- Liquid Glass Effect: Modern translucent design (.NET 10, iOS/macOS 26)
Documentation and Navigation Guide
Getting Started
📄 Read: references/getting-started.md
When to read: First-time implementation, installation, or basic setup.
Topics covered:
- Installation of Syncfusion.Maui.Sliders NuGet package
- Handler registration with ConfigureSyncfusionCore
- Basic DateTime Slider implementation (XAML and C#)
- Setting Minimum, Maximum, and Value properties
- Orientation configuration (Horizontal/Vertical)
- Inverse slider direction with IsInversed
- Platform-specific setup (Visual Studio, VS Code, JetBrains Rider)
Track Configuration
📄 Read: references/track-customization.md
When to read: Customizing track appearance, colors, or dimensions.
Topics covered:
- Minimum, Maximum, and Value property details
- Active and inactive track colors (ActiveFill, InactiveFill)
- Track height customization (ActiveSize, InactiveSize)
- Track extent for extending track edges
- TrackStyle class and properties
- Disabled track states with Visual State Manager
Labels and Formatting
📄 Read: references/labels.md
When to read: Displaying formatted date labels or customizing label appearance.
Topics covered:
- ShowLabels property to enable labels
- DateFormat property for custom date/time formats
- Label placement options (OnTicks, BetweenTicks)
- Edge label placement (Default, Inside)
- Label style customization (colors, fonts, sizes)
- Active and inactive label styling
- Label offset adjustment
- LabelCreated event for custom label text
- Disabled label states
Ticks and Dividers
📄 Read: references/ticks-and-dividers.md
When to read: Adding visual interval indicators or customizing tick/divider appearance.
Topics covered:
- ShowTicks property for major ticks
- MinorTicksPerInterval for minor tick indicators
- Major and minor tick styling (colors, sizes)
- Tick offset configuration
- ShowDividers property for divider marks
- Divider styling (radius, colors, stroke)
- Active and inactive tick/divider customization
- Disabled states with Visual State Manager
Thumb and Overlay Customization
📄 Read: references/thumb-and-overlay.md
When to read: Customizing the draggable thumb or its interactive overlay.
Topics covered:
- Thumb definition and purpose
- Thumb size with Radius property
- Thumb colors (Fill, Stroke, StrokeThickness)
- ThumbStyle class properties
- Thumb overlay definition and behavior
- Overlay size and color customization
- ThumbOverlayStyle properties
- Disabled thumb states with Visual State Manager
Tooltip Configuration
📄 Read: references/tooltip.md
When to read: Displaying tooltips during interaction or customizing tooltip appearance.
Topics covered:
- Enabling tooltip with SliderTooltip
- ShowAlways property for persistent tooltips
- Tooltip styling (Fill, Stroke, StrokeThickness)
- Tooltip text customization (TextColor, FontSize, FontFamily)
- Padding and Position properties
- DateFormat for tooltip date display
- TooltipLabelCreated event for custom tooltip text
Intervals and Value Selection
📄 Read: references/intervals-and-selection.md
When to read: Configuring date intervals, discrete selection, or deferred updates.
Topics covered:
- Interval property for label/tick/divider spacing
- IntervalType enumeration (Years, Months, Days, Hours, Minutes, Seconds)
- Auto interval calculation
- StepDuration for discrete selection mode
- EnableDeferredUpdate and DeferredUpdateDelay
- Different interval type examples with DateFormat
Events and Commands
📄 Read: references/events-and-commands.md
When to read: Handling value changes, implementing MVVM commands, or customizing labels/tooltips dynamically.
Topics covered:
- ValueChangeStart, ValueChanging, ValueChanged, ValueChangeEnd events
- Event handler implementation
- LabelCreated event for dynamic label customization
- TooltipLabelCreated event for tooltip text formatting
- DragStartedCommand and DragCompletedCommand
- Command parameters for MVVM binding
- Liquid Glass Effect (EnableLiquidGlassEffect property)
1---2name: syncfusion-maui-date-time-slider3description: Implements Syncfusion .NET MAUI DateTime Slider (SfDateTimeSlider) for date range selection. Use when working with DateTime Slider, date range selection, date picker slider, or temporal value selection UI in MAUI applications. This skill covers installation, configuration, track customization, labels, ticks, dividers, tooltips, thumb styling, intervals, and discrete selection.4---5
6# Implementing .NET MAUI Date Time Slider
7
8The Syncfusion .NET MAUI DateTime Slider (SfDateTimeSlider) is a highly interactive UI control for selecting a single DateTime value from a range of date/time values. It provides rich customization options for labels, ticks, tooltips, track, thumb, and dividers, making it ideal for temporal data selection in MAUI applications.
9
10## When to Use This Skill
11
12Use this skill when user need to:
13- **Implement date selection** with a slider interface in .NET MAUI applications
14- **Create time pickers** or datetime range selectors with visual feedback
15- **Build temporal UI controls** for selecting dates, times, or datetime values
16- **Customize slider appearance** including track colors, thumb styling, labels, ticks, and tooltips
17- **Handle datetime value changes** through events and commands in MVVM patterns
18- **Enable discrete selection** with specific date/time steps (daily, monthly, yearly, hourly)
19- **Support RTL and accessibility** with WCAG-compliant datetime sliders
20- **Add modern glass effects** with the Liquid Glass Effect (.NET 10+)
21
22This skill is essential when working with temporal data selection, calendar-based inputs, date range filtering, time scheduling interfaces, or any scenario requiring intuitive datetime value selection in .NET MAUI.
23
24## Component Overview
25
26**Key Features:**
27- **DateTime Support**: Select DateTime values with flexible range configuration
28- **Dual Orientation**: Horizontal and vertical slider orientations
29- **Rich Labeling**: Customizable date format labels with active/inactive states
30- **Ticks & Dividers**: Visual indicators for major/minor intervals
31- **Interactive Tooltip**: Shows selected value during interaction
32- **Discrete Mode**: Step-based selection with configurable intervals
33- **Visual Customization**: Full control over colors, sizes, fonts, and styles
34- **Events & Commands**: Value change tracking and MVVM command support
35- **Visual State Manager**: Support for enabled/disabled states
36- **Liquid Glass Effect**: Modern translucent design (.NET 10, iOS/macOS 26)
37
38## Documentation and Navigation Guide
39
40### Getting Started
41📄 **Read:** [references/getting-started.md](references/getting-started.md)
42
43**When to read:** First-time implementation, installation, or basic setup.
44
45**Topics covered:**
46- Installation of Syncfusion.Maui.Sliders NuGet package
47- Handler registration with ConfigureSyncfusionCore
48- Basic DateTime Slider implementation (XAML and C#)
49- Setting Minimum, Maximum, and Value properties
50- Orientation configuration (Horizontal/Vertical)
51- Inverse slider direction with IsInversed
52- Platform-specific setup (Visual Studio, VS Code, JetBrains Rider)
53
54### Track Configuration
55📄 **Read:** [references/track-customization.md](references/track-customization.md)
56
57**When to read:** Customizing track appearance, colors, or dimensions.
58
59**Topics covered:**
60- Minimum, Maximum, and Value property details
61- Active and inactive track colors (ActiveFill, InactiveFill)
62- Track height customization (ActiveSize, InactiveSize)
63- Track extent for extending track edges
64- TrackStyle class and properties
65- Disabled track states with Visual State Manager
66
67### Labels and Formatting
68📄 **Read:** [references/labels.md](references/labels.md)
69
70**When to read:** Displaying formatted date labels or customizing label appearance.
71
72**Topics covered:**
73- ShowLabels property to enable labels
74- DateFormat property for custom date/time formats
75- Label placement options (OnTicks, BetweenTicks)
76- Edge label placement (Default, Inside)
77- Label style customization (colors, fonts, sizes)
78- Active and inactive label styling
79- Label offset adjustment
80- LabelCreated event for custom label text
81- Disabled label states
82
83### Ticks and Dividers
84📄 **Read:** [references/ticks-and-dividers.md](references/ticks-and-dividers.md)
85
86**When to read:** Adding visual interval indicators or customizing tick/divider appearance.
87
88**Topics covered:**
89- ShowTicks property for major ticks
90- MinorTicksPerInterval for minor tick indicators
91- Major and minor tick styling (colors, sizes)
92- Tick offset configuration
93- ShowDividers property for divider marks
94- Divider styling (radius, colors, stroke)
95- Active and inactive tick/divider customization
96- Disabled states with Visual State Manager
97
98### Thumb and Overlay Customization
99📄 **Read:** [references/thumb-and-overlay.md](references/thumb-and-overlay.md)
100
101**When to read:** Customizing the draggable thumb or its interactive overlay.
102
103**Topics covered:**
104- Thumb definition and purpose
105- Thumb size with Radius property
106- Thumb colors (Fill, Stroke, StrokeThickness)
107- ThumbStyle class properties
108- Thumb overlay definition and behavior
109- Overlay size and color customization
110- ThumbOverlayStyle properties
111- Disabled thumb states with Visual State Manager
112
113### Tooltip Configuration
114📄 **Read:** [references/tooltip.md](references/tooltip.md)
115
116**When to read:** Displaying tooltips during interaction or customizing tooltip appearance.
117
118**Topics covered:**
119- Enabling tooltip with SliderTooltip
120- ShowAlways property for persistent tooltips
121- Tooltip styling (Fill, Stroke, StrokeThickness)
122- Tooltip text customization (TextColor, FontSize, FontFamily)
123- Padding and Position properties
124- DateFormat for tooltip date display
125- TooltipLabelCreated event for custom tooltip text
126
127### Intervals and Value Selection
128📄 **Read:** [references/intervals-and-selection.md](references/intervals-and-selection.md)
129
130**When to read:** Configuring date intervals, discrete selection, or deferred updates.
131
132**Topics covered:**
133- Interval property for label/tick/divider spacing
134- IntervalType enumeration (Years, Months, Days, Hours, Minutes, Seconds)
135- Auto interval calculation
136- StepDuration for discrete selection mode
137- EnableDeferredUpdate and DeferredUpdateDelay
138- Different interval type examples with DateFormat
139
140### Events and Commands
141📄 **Read:** [references/events-and-commands.md](references/events-and-commands.md)
142
143**When to read:** Handling value changes, implementing MVVM commands, or customizing labels/tooltips dynamically.
144
145**Topics covered:**
146- ValueChangeStart, ValueChanging, ValueChanged, ValueChangeEnd events
147- Event handler implementation
148- LabelCreated event for dynamic label customization
149- TooltipLabelCreated event for tooltip text formatting
150- DragStartedCommand and DragCompletedCommand
151- Command parameters for MVVM binding
152- Liquid Glass Effect (EnableLiquidGlassEffect property)
153