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: winui/Funnel-Chart/Legend.md
+1-17Lines changed: 1 addition & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ documentation: ug
11
11
12
12
The legend contains a list of series data points in the chart. The information provided in each legend item helps you to identify the corresponding data series in the chart.
13
13
14
-
N> The x-value of data points in the funnel chart will be the legend items ‘Label’.
14
+
N> The x-value of data points in the funnel chart will be the legend items `Label`.
15
15
16
16
{% tabs %}
17
17
@@ -83,9 +83,7 @@ TextBlock textBlock = new TextBlock()
83
83
84
84
legend.Header = textBlock;
85
85
chart.Legend = legend;
86
-
87
86
. . .
88
-
89
87
this.Content = chart;
90
88
91
89
{% endhighlight %}
@@ -130,9 +128,7 @@ chart.Legend = new ChartLegend()
130
128
IconHeight = 15,
131
129
IconVisibility = Visibility.Visible,
132
130
};
133
-
134
131
. . .
135
-
136
132
this.Content = chart;
137
133
138
134
{% endhighlight %}
@@ -167,9 +163,7 @@ chart.Legend = new ChartLegend()
167
163
{
168
164
ItemMargin = new Thickness(10)
169
165
};
170
-
171
166
. . .
172
-
173
167
this.Content = chart;
174
168
175
169
{% endhighlight %}
@@ -204,9 +198,7 @@ chart.Legend = new ChartLegend()
204
198
{
205
199
CheckBoxVisibility = Visibility.Visible
206
200
};
207
-
208
201
. . .
209
-
210
202
this.Content = chart;
211
203
212
204
{% endhighlight %}
@@ -241,9 +233,7 @@ chart.Legend = new ChartLegend()
241
233
{
242
234
ToggleSeriesVisibility = true
243
235
};
244
-
245
236
. . .
246
-
247
237
this.Content = chart;
248
238
249
239
{% endhighlight %}
@@ -281,9 +271,7 @@ chart.Legend = new ChartLegend()
281
271
Placement = LegendPlacement.Right,
282
272
ItemMargin = new Thickness(10),
283
273
};
284
-
285
274
. . .
286
-
287
275
this.Content = chart;
288
276
289
277
{% endhighlight %}
@@ -331,9 +319,7 @@ chart.Legend = new ChartLegend()
331
319
BorderThickness = new Thickness(1),
332
320
CornerRadius = new CornerRadius(5)
333
321
};
334
-
335
322
. . .
336
-
337
323
this.Content = chart;
338
324
339
325
{% endhighlight %}
@@ -383,9 +369,7 @@ chart.Legend = new ChartLegend()
383
369
{
384
370
ItemTemplate = grid.Resources["labelTemplate"] as DataTemplate
0 commit comments