# Animation

## Content



Calendar control supports animation during navigation, by default. However, you can choose not to animate the calendar control by setting [IsAnimated](/componentone/api/maui/online-maui/dotnet-api/C1.Maui.Calendar/C1.Maui.Calendar.C1Calendar.IsAnimated.html) property of the [C1Calendar](/componentone/api/maui/online-maui/dotnet-api/C1.Maui.Calendar/C1.Maui.Calendar.C1Calendar.html) class to **false**. The following GIFs demonstrate how the Calendar control appears with and without animation.

|   **Calendar with animation**   |   **Calendar without animation**   |
| --- | --- |
|   ![MAUI Calendar with animation](https://cdn.mescius.io/document-site-files/images/4e85e507-742e-4a29-b3fe-f23b37c29164/images/calendar-animation.gif)   |   ![MAUI Calendar without animation](https://cdn.mescius.io/document-site-files/images/4e85e507-742e-4a29-b3fe-f23b37c29164/images/calendar-noanimation.gif)   |

The following code demonstrates how to use the **IsAnimated** property.

**xml**

```xml
<c1:C1Calendar x:Name="calendar" IsAnimated="False"/>
```

**csharp**

```csharp
calendar.IsAnimated = false;
```