RadCalendar Transition Modes
RadCalendar
supports different animations when switching between months, weeks or years. These are also called transitions. Defining a transition is done by setting the transitionMode
property to one of the values enlisted by the CalendarTransitionMode
enum.
Available Transition Modes
-
None
- Transitions with gestures are disabled and no animation is applied when transitioning programatically. Available in iOS and Android. -
Slide
- Slide animation is applied when transitioning between views inRadCalendar
. Available in iOS and Android. -
Stack
- Stack animation is applied when transitioning between views inRadCalendar
. Available in iOS and Android. -
Flip
- Flip animation is applied when transitioning between views inRadCalendar
. Available only in iOS. -
Fold
- Fold animation is applied when transitioning between views inRadCalendar
. Available only in iOS. -
Float
- Float animation is applied when transitioning between views inRadCalendar
. Available only in iOS. -
Rotate
- Rotate animation is applied when transitioning between views inRadCalendar
. Available only in iOS. -
Plain
- Allows non inertial scrolling between views inRadCalendar
. Available only in Android. -
Free
- Allows inertial scrolling between views inRadCalendar
. Available only in Android. -
Combo
- Applies inertial slide animation when transitioning between views inRadCalendar
. Available only in Android. -
Overlap
- Views overlap when transitioning inRadCalendar
. Available only in Android.
<GridLayout>
<RadCalendar [transitionMode]="transitionMode"></RadCalendar>
</GridLayout>