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
Copy file name to clipboardExpand all lines: MAUI/SunburstChart/Selection.md
+5-17Lines changed: 5 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,8 +48,6 @@ this.Content = sunburst;
48
48
49
49
{% endtabs %}
50
50
51
-
![Child selection in MAUI Sunburst Chart.]()
52
-
53
51
The following code shows the `Group` selection type.
54
52
55
53
{% tabs %}
@@ -80,8 +78,6 @@ this.Content = sunburst;
80
78
81
79
{% endtabs %}
82
80
83
-
![Group selection in MAUI Sunburst Chart.]()
84
-
85
81
The following code shows the `Parent` selection type.
86
82
87
83
{% tabs %}
@@ -112,8 +108,6 @@ this.Content = sunburst;
112
108
113
109
{% endtabs %}
114
110
115
-
![Parent selection in MAUI Sunburst Chart.]()
116
-
117
111
## DisplayMode
118
112
119
113
The `DisplayMode` property provides the following selection options to highlight the segments:
@@ -122,7 +116,7 @@ The `DisplayMode` property provides the following selection options to highlight
122
116
* By opacity
123
117
* By stroke
124
118
125
-
# Brush
119
+
###Brush
126
120
127
121
This mode highlights the selected segment using the brush specified in the `Fill` property.
128
122
@@ -156,9 +150,7 @@ this.Content = sunburst;
156
150
157
151
{% endtabs %}
158
152
159
-
![ DisplayMode HighlightByBrush.]()
160
-
161
-
# Opacity
153
+
### Opacity
162
154
163
155
This mode highlights the selected segment with the opacity specified in the `Opacity` property.
164
156
@@ -192,9 +184,7 @@ this.Content = sunburst;
192
184
193
185
{% endtabs %}
194
186
195
-
![DisplayMode HighlightByOpacity.]()
196
-
197
-
# Stoke
187
+
### Stoke
198
188
199
189
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.
200
190
@@ -229,11 +219,9 @@ this.Content = sunburst;
229
219
230
220
{% endtabs %}
231
221
232
-
![DisplayMode HighlightByStroke.]()
233
-
234
222
## Events
235
223
236
-
# SelectionChanging
224
+
###SelectionChanging
237
225
238
226
The `SelectionChanging` occurs when a segment in the Sunburst chart is being selected.
239
227
This is a cancelable event. The following properties are contained in the event arguments:
@@ -243,7 +231,7 @@ This is a cancelable event. The following properties are contained in the event
243
231
*`Cancel` - Gets or sets the value whether to continue selection or not.
244
232
245
233
246
-
# Selection Changed
234
+
###Selection Changed
247
235
248
236
The `SelectionChanged` event occurs when a segment in the Sunburst chart is selected or deselected. The following properties are contained in the event arguments:
0 commit comments