You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This section explains how to populate the Cartesian chart with data, a title, data labels, a legend, and tooltips, as well as the essential aspects for getting started with the chart.
16
16
17
+
To get start quickly with our [.NET MAUI Cartesian Chart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html), you can check the below video.
Copy file name to clipboardExpand all lines: MAUI/DockLayout/getting-started-docklayout.md
-4Lines changed: 0 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,10 +12,6 @@ keywords: .net maui docklayout, syncfusion docklayout maui, dock layout .net mau
12
12
13
13
This guide details the initial setup and basic usage of the [SfDockLayout](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.SfDockLayout.html) control, offering insight into the layout's capability to arrange views using different docking positions such as top, bottom, left, right, and none.
14
14
15
-
To get start quickly with our [.NET MAUI DockLayout](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.SfDockLayout.html), you can check the below video.
Copy file name to clipboardExpand all lines: MAUI/SunburstChart/Selection.md
+38-4Lines changed: 38 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,16 +8,18 @@ documentation: ug
8
8
---
9
9
# Selection in .NET MAUI Sunburst Chart
10
10
11
-
The sunburst chart provides support to select or highlight the segments.
11
+
The sunburst chart provides ssupports selecting and highlighting segments. Selection is triggered by a tap gesture on a segment, enabling users to interact with hierarchical data.
12
12
13
13
## Type
14
14
15
-
The SelectionType property allows you to select a segment based on the following categories:
15
+
The `Type` property in allows you to select a segment based on the following categories:
16
16
* Child: Highlights the selected segment along with its children in all levels.
17
17
* Group: Highlights the entire group of the selected segment in a hierarchy.
18
18
* Parent: Highlights the parent of the selected segment in the hierarchy.
19
19
* Single: Highlights the selected segment alone.
20
20
21
+
The default value of the `Type` property is `Single`.
22
+
21
23
The following code shows the `Child` selection type.
22
24
23
25
{% tabs %}
@@ -108,6 +110,36 @@ this.Content = sunburst;
108
110
109
111
{% endtabs %}
110
112
113
+
The following code shows the `Single` selection type.
114
+
115
+
{% tabs %}
116
+
117
+
{% highlight xaml %}
118
+
119
+
<chart:SfSunburstChart>
120
+
. . .
121
+
<chart:SfSunburstChart.SelectionSettings>
122
+
<chart:SunburstSelectionSettings Type="Single"/>
123
+
</chart:SfSunburstChart.SelectionSettings>
124
+
</chart:SfSunburstChart>
125
+
126
+
{% endhighlight %}
127
+
128
+
{% highlight c# %}
129
+
130
+
SfSunburstChart sunburstChart = new SfSunburstChart();
131
+
. . .
132
+
SunburstSelectionSettings selectionSettings = new SunburstSelectionSettings
0 commit comments