# Orientation

## Content



The C1Calendar appears in default horizontal orientation. However, you can change the orientation of the calendar to Vertical by using the [Orientation](/componentone/api/xamarin/online-android/dotnet-api/C1.Android.Calendar/C1.Android.Calendar.C1Calendar.Orientation.html) property. The [CalendarOrientation](/componentone/api/xamarin/online-android/dotnet-api/C1.Android.Calendar/C1.Android.Calendar.CalendarOrientation.html) enumeration can be used to set Vertical orientation as shown in the code below.

The following code example demonstrates how to set the Orientation in C#. This code example uses the sample created in the [Quick Start](/componentone/docs/xamarin/online-android/controls/CalendarOverview/CalendarQuickStart) section.

```csharp
calendar.Orientation = CalendarOrientation.Vertical;
```