File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
blazor/accumulation-chart Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -404,6 +404,11 @@ To use, add a `LegendItemTemplate` inside any [AccumulationChartSeries](https://
404404
405405@* Initialize the accumulation chart component and configure its essential features *@
406406<SfAccumulationChart Title="Mobile Browser Statistics">
407+
408+ @* Display the legend and allow toggling visibility on interaction *@
409+ <AccumulationChartLegendSettings Visible="true" >
410+ </AccumulationChartLegendSettings>
411+
407412 <AccumulationChartSeriesCollection>
408413 @* Define a pie series with X and Y mappings and color mapping *@
409414 <AccumulationChartSeries DataSource="@StatisticsDetails" XName="Browser" YName="Users" Name="Browser" PointColorMapping="Color">
@@ -424,9 +429,6 @@ To use, add a `LegendItemTemplate` inside any [AccumulationChartSeries](https://
424429 </AccumulationChartSeries>
425430 </AccumulationChartSeriesCollection>
426431
427- @* Display the legend and allow toggling visibility on interaction *@
428- <AccumulationChartLegendSettings Visible="true" >
429- </AccumulationChartLegendSettings>
430432</SfAccumulationChart>
431433
432434@code {
You can’t perform that action at this time.
0 commit comments