Hi Carlos,
Greetings from Syncfusion.
We have analyzed your and we would like to inform you that when there is more number of legends, the legend exceeds the chart will be cropped, as it arranged horizontally.
To avoid the cropping, we can change the existing arrangement layout (one which arrange each legend items horizontally) using ItemsPanel property as in below code snippet:
Code snippet
<syncfusion:SfChart x:Name="chart">
<syncfusion:SfChart.Resources>
<ItemsPanelTemplate x:Key="itemPanelTemplate">
<WrapPanel/>
</ItemsPanelTemplate>
</syncfusion:SfChart.Resources>
<syncfusion:SfChart.Legend>
<syncfusion:ChartLegend ItemsPanel="{StaticResource itemPanelTemplate}"/>
</syncfusion:SfChart.Legend>
</syncfusion:SfChart> |
Screenshot:
Hope it helps you.
Thanks,
Muneesh Kumar G.