diff --git a/xamarin-android-toc.html b/xamarin-android-toc.html
index a78bd484..2d0da6f2 100644
--- a/xamarin-android-toc.html
+++ b/xamarin-android-toc.html
@@ -823,7 +823,7 @@
Release Notes
- - 2022 Volume 4 - v20.4.0.*
- 2022 Volume 3 - v20.3.0.*
- 2022 Volume 2 - v20.2.0.*
- 2022 volume 1 - v20.1.0.*
- 2021 Volume 4 - v19.4.0.*
- 2021 volume 3 - v19.3.0.*
- 2021 Volume 2 - v19.2.0.*
- 2021 Volume 1 - v19.1.0.*
- 2020 Volume 4 - v18.4.0.*
- 2020 Volume 3 - v18.3.0.*
- 2020 Volume 2 - v18.2.0.*
- 2020 Volume 1 - v18.1.0.*
- 2019 Volume 4 - v17.4.0.*
+ - 2022 Volume 4 - v20.4.0.*
- 2022 Volume 3 - v20.3.0.*
- 2022 Volume 2 - v20.2.0.*
- 2022 volume 1 - v20.1.0.*
- 2021 Volume 4 - v19.4.0.*
- 2021 volume 3 - v19.3.0.*
- 2021 Volume 2 - v19.2.0.*
- 2021 Volume 1 - v19.1.0.*
- 2020 Volume 4 - v18.4.0.*
- 2020 Volume 3 - v18.3.0.*
- 2020 Volume 2 - v18.2.0.*
- 2020 Volume 1 - v18.1.0.*
- 2019 Volume 4 - v17.4.0.*
- 2019 Volume 3 - v17.3.0.*
- Weekly Nuget Release
diff --git a/xamarin-android/Release-Notes/v20.4.0.51.md b/xamarin-android/Release-Notes/v20.4.0.51.md
new file mode 100644
index 00000000..3c3422bb
--- /dev/null
+++ b/xamarin-android/Release-Notes/v20.4.0.51.md
@@ -0,0 +1,16 @@
+---
+title: Essential Studio for Xamarin.Android Weekly Nuget Release Release Notes
+description: Essential Studio for Xamarin.Android Weekly Nuget Release Release Notes
+platform: Xamarin.Android
+documentation: ug
+---
+
+# Essential Studio for Xamarin.Android Release Notes
+
+{% include release-info.html date="February 21, 2023" version="v20.4.0.51" %}
+
+{% directory path: _includes/release-notes/v20.4.0.51 %}
+
+{% include {{file.url}} %}
+
+{% enddirectory %}
\ No newline at end of file
diff --git a/xamarin-android/SfCalendar/Populating-Events.md b/xamarin-android/SfCalendar/Populating-Events.md
index 95a0f2db..3c3b0ef5 100644
--- a/xamarin-android/SfCalendar/Populating-Events.md
+++ b/xamarin-android/SfCalendar/Populating-Events.md
@@ -34,7 +34,7 @@ N> The Inline function will be available only in MonthView with Single selection
## Adding events using Collection
-Calendar Events collection can be provided to `SfCalendar` using the following steps. [CalendarEventCollection](https://help.syncfusion.com/cr/xamarin-android/Com.Syncfusion.Calendar.InlineEventToggledEventArgs.html#Com_Syncfusion_Calendar_InlineEventToggledEventArgs_CalendarEventCollection) is a class, which holds the details about the events to be rendered in `SfCalendar`.
+Calendar Events collection can be provided to `SfCalendar` by following these steps. The [CalendarEventCollection](https://help.syncfusion.com/cr/xamarin-android/Com.Syncfusion.Calendar.InlineEventToggledEventArgs.html#Com_Syncfusion_Calendar_InlineEventToggledEventArgs_CalendarEventCollection) is a class, which holds the details about the events to be rendered in `SfCalendar`.
[CalendarInlineEvent](https://help.syncfusion.com/cr/xamarin-android/Com.Syncfusion.Calendar.InlineItemTappedEventArgs.html#Com_Syncfusion_Calendar_InlineItemTappedEventArgs_InlineEvent) has some basic properties such as [StartTime](https://help.syncfusion.com/cr/xamarin-android/Com.Syncfusion.Calendar.CalendarInlineEvent.html#Com_Syncfusion_Calendar_CalendarInlineEvent_StartTime), [EndTime](https://help.syncfusion.com/cr/xamarin-android/Com.Syncfusion.Calendar.CalendarInlineEvent.html#Com_Syncfusion_Calendar_CalendarInlineEvent_EndTime), [Subject](https://help.syncfusion.com/cr/xamarin-android/Com.Syncfusion.Calendar.CalendarInlineEvent.html#Com_Syncfusion_Calendar_CalendarInlineEvent_Subject) and [Color](https://help.syncfusion.com/cr/xamarin-android/Com.Syncfusion.Calendar.CalendarInlineEvent.html#Com_Syncfusion_Calendar_CalendarInlineEvent_Color)
@@ -119,8 +119,61 @@ Inline view mode
Agenda view mode
-
-
+
+
+### InlineAppointmentTextSize
+
+By using the [InlineAppointmentTextSize](https://help.syncfusion.com/cr/xamarin-android/Com.Syncfusion.Calendar.MonthViewSettings.html#Com_Syncfusion_Calendar_MonthViewSettings_InlineAppointmentTextSize) property from the [MonthViewSettings](https://help.syncfusion.com/cr/xamarin-android/Com.Syncfusion.Calendar.MonthViewSettings.html) class of `SfCalendar` control, you can customize the text size for the appointment details text in inline and agenda view.
+
+The following code explains how to customize the InlineAppointmentTextSize in Calendar InlineView.
+
+{% highlight c# %}
+
+ SfCalendar sfCalendar = new SfCalendar(this);
+ sfCalendar.MonthViewSettings.InlineAppointmentTextSize = 20;
+ sfCalendar.ShowEventsInline = true;
+ sfCalendar.InlineViewMode = InlineViewMode.Inline;
+
+{% endhighlight %}
+
+The following code explains how to customize the InlineAppointmentTextSize in Calendar AgendaView.
+
+{% highlight c# %}
+
+ SfCalendar sfCalendar = new SfCalendar(this);
+ sfCalendar.MonthViewSettings.InlineAppointmentTextSize = 20;
+ sfCalendar.InlineViewMode = InlineViewMode.Agenda;
+ sfCalendar.ShowEventsInline = true;
+
+{% endhighlight %}
+
+ ### InlineAppointmentTimeTextSize
+
+By using the [InlineAppointmentTimeTextSize](https://help.syncfusion.com/cr/xamarin-android/Com.Syncfusion.Calendar.MonthViewSettings.html#Com_Syncfusion_Calendar_MonthViewSettings_InlineAppointmentTimeTextSize) property from the [MonthViewSettings](https://help.syncfusion.com/cr/xamarin-android/Com.Syncfusion.Calendar.MonthViewSettings.html) class of `SfCalendar` control, you can customize the time text size for the appointment details time in both inline and agenda view.
+
+The following code explains how to customize the InlineAppointmentTimeTextSize in Calendar InlineView.
+
+ {% highlight c# %}
+
+ SfCalendar sfCalendar = new SfCalendar(this);
+ sfCalendar.MonthViewSettings.InlineAppointmentTimeTextSize = 20;
+ sfCalendar.ShowEventsInline = true;
+ sfCalendar.InlineViewMode = InlineViewMode.Inline;
+
+{% endhighlight %}
+
+
+The following code explains how to customize the InlineAppointmentTimeTextSize in Calendar AgendaView.
+
+{% highlight c# %}
+
+ SfCalendar sfCalendar = new SfCalendar(this);
+ sfCalendar.MonthViewSettings.InlineAppointmentTimeTextSize = 20;
+ sfCalendar.InlineViewMode = InlineViewMode.Agenda;
+ sfCalendar.ShowEventsInline = true;
+
+{% endhighlight %}
+
## Getting inline/agenda view appointment details
Using `InlineEvent` property from the `InlineItemTappedEventArgs` argument of `InlineItemTapped` event, you can get the month inline/agenda appointments details while tapping the specific appointment in inline/agenda view.