diff --git a/MAUI/Release-notes/v30.1.37.md b/MAUI/Release-notes/v30.1.37.md
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/MAUI/SunburstChart/Selection.md b/MAUI/SunburstChart/Selection.md
new file mode 100644
index 0000000000..f68ee33498
--- /dev/null
+++ b/MAUI/SunburstChart/Selection.md
@@ -0,0 +1,274 @@
+---
+layout: post
+title: Selection in .NET MAUI Sunburst Chart control | Syncfusion
+description: This section explains how to enable and customize selection in the Syncfusion® .NET MAUI Sunburst Chart control.
+platform: maui
+control: SfSunburstChart
+documentation: ug
+---
+# Selection in .NET MAUI Sunburst Chart
+
+The Sunburst Chart supports segment selection and highlighting. Selection is triggered by a tap gesture on a segment, allowing users to interact with hierarchical data.
+
+## Type
+
+The `Type` property allows you to select a segment based on the following categories:
+* Child: Highlights the selected segment along with its children in all levels.
+* Group: Highlights the entire group of the selected segment in a hierarchy.
+* Parent: Highlights the parent of the selected segment in the hierarchy.
+* Single: Highlights the selected segment alone.
+
+The default value of the `Type` property is `Single`.
+
+The following code shows the `Child` selection type.
+
+{% tabs %}
+
+{% highlight xaml %}
+
+
+ . . .
+
+
+
+
+
+{% endhighlight %}
+
+{% highlight c# %}
+
+SfSunburstChart sunburstChart = new SfSunburstChart();
+. . .
+SunburstSelectionSettings selectionSettings = new SunburstSelectionSettings
+{
+ Type = SunburstSelectionType.Child
+};
+sunburstChart.SelectionSettings = selectionSettings;
+this.Content = sunburst;
+
+{% endhighlight %}
+
+{% endtabs %}
+
+The following code shows the `Group` selection type.
+
+{% tabs %}
+
+{% highlight xaml %}
+
+
+ . . .
+
+
+
+
+
+{% endhighlight %}
+
+{% highlight c# %}
+
+SfSunburstChart sunburstChart = new SfSunburstChart();
+. . .
+SunburstSelectionSettings selectionSettings = new SunburstSelectionSettings
+{
+ Type = SunburstSelectionType.Group
+};
+sunburstChart.SelectionSettings = selectionSettings;
+this.Content = sunburst;
+
+{% endhighlight %}
+
+{% endtabs %}
+
+The following code shows the `Parent` selection type.
+
+{% tabs %}
+
+{% highlight xaml %}
+
+
+ . . .
+
+
+
+
+
+{% endhighlight %}
+
+{% highlight c# %}
+
+SfSunburstChart sunburstChart = new SfSunburstChart();
+. . .
+SunburstSelectionSettings selectionSettings = new SunburstSelectionSettings
+{
+ Type = SunburstSelectionType.Parent
+};
+sunburstChart.SelectionSettings = selectionSettings;
+this.Content = sunburst;
+
+{% endhighlight %}
+
+{% endtabs %}
+
+The following code shows the `Single` selection type.
+
+{% tabs %}
+
+{% highlight xaml %}
+
+
+ . . .
+
+
+
+
+
+{% endhighlight %}
+
+{% highlight c# %}
+
+SfSunburstChart sunburstChart = new SfSunburstChart();
+. . .
+SunburstSelectionSettings selectionSettings = new SunburstSelectionSettings
+{
+ Type = SunburstSelectionType.Single
+};
+sunburstChart.SelectionSettings = selectionSettings;
+this.Content = sunburst;
+
+{% endhighlight %}
+
+{% endtabs %}
+
+## DisplayMode
+
+The `DisplayMode` property provides the following selection options to highlight the segments:
+
+* By Brush
+* By opacity
+* By stroke
+
+ The default value of `DisplayMode` is `HighlightByBrush`.
+
+### Brush
+
+This mode highlights the selected segment using the brush defined in the `Fill` property of the `SunburstSelectionSettings`.
+
+{% tabs %}
+
+{% highlight xaml %}
+
+
+ . . .
+
+
+
+
+
+{% endhighlight %}
+
+{% highlight c# %}
+
+SfSunburstChart sunburstChart = new SfSunburstChart();
+. . .
+SunburstSelectionSettings selectionSettings = new SunburstSelectionSettings
+{
+ Fill = Colors.Pink,
+ DisplayMode = SunburstSelectionDisplayMode.HighlightByBrush,
+ Type = SunburstSelectionType.Child,
+};
+sunburstChart.SelectionSettings = selectionSettings;
+this.Content = sunburst;
+
+{% endhighlight %}
+
+{% endtabs %}
+
+### Opacity
+
+This mode highlights the selected segment with full opacity as 1, while unselected segments use the opacity value defined in the `Opacity` property.
+
+{% tabs %}
+
+{% highlight xaml %}
+
+
+ . . .
+
+
+
+
+
+{% endhighlight %}
+
+{% highlight c# %}
+
+SfSunburstChart sunburstChart = new SfSunburstChart();
+. . .
+SunburstSelectionSettings selectionSettings = new SunburstSelectionSettings
+{
+ Opacity = 0.6,
+ DisplayMode = SunburstSelectionDisplayMode.HighlightByOpacity,
+ Type = SunburstSelectionType.Child,
+};
+sunburstChart.SelectionSettings = selectionSettings;
+this.Content = sunburst;
+
+{% endhighlight %}
+
+{% endtabs %}
+
+### Stoke
+
+This mode highlights the selected segment by applying stroke to it. The color and thickness of the stroke can be customized using the `Stroke` and `StrokeWidth` properties.
+
+{% tabs %}
+
+{% highlight xaml %}
+
+
+ . . .
+
+
+
+
+
+{% endhighlight %}
+
+{% highlight c# %}
+
+SfSunburstChart sunburstChart = new SfSunburstChart();
+. . .
+SunburstSelectionSettings selectionSettings = new SunburstSelectionSettings
+{
+ Stroke = Colors.Black,
+ StrokeWidth = 3,
+ DisplayMode = SunburstSelectionDisplayMode.HighlightByStroke,
+ Type = SunburstSelectionType.Child,
+};
+sunburstChart.SelectionSettings = selectionSettings;
+this.Content = sunburst;
+
+{% endhighlight %}
+
+{% endtabs %}
+
+## Events
+
+### SelectionChanging
+
+The `SelectionChanging` occurs when a segment in the Sunburst chart is being selected.
+This is a cancelable event. The following properties are contained in the event arguments:
+
+* `NewSegment`: Gets the new segment that was selected.
+* `OldSegment`: Gets the old segment that was selected or deselected.
+* `Cancel` - Gets or sets the value whether to continue selection or not.
+
+
+### Selection Changed
+
+The `SelectionChanged` event occurs when a segment in the Sunburst chart is selected or deselected. The following properties are contained in the event arguments:
+
+* `IsSelected`: Indicates whether a segment is selected.
+* `NewSegment`: Gets the new segment that was selected.
+* `OldSegment`: Gets the old segment that was selected or deselected.
diff --git a/maui-toc.html b/maui-toc.html
index 99cc447049..9aa6c12d6b 100644
--- a/maui-toc.html
+++ b/maui-toc.html
@@ -1297,6 +1297,7 @@
Appearance
Data Label
Tooltip
+ Selection
Center View