[ad_1]
I received the problem, that the labels and values round a RadarChart (as effectively es DonutChart, PieChart, …) are outdoors the viewport. Is there any strategy to repair it?
My XAML seems like:
<microcharts:ChartView Grid.Row="1" Chart="{Binding ChartEmployer}" IsVisible="{Binding EmployersChartVisibility}" x:Title="EmployerChart" />
and my ViewModel returns
return new RadarChart()
{
Entries = EntriesEmployer,
LabelTextSize = 50f,
BorderLineColor = Utility.Present.RequestedTheme == OSAppTheme.Gentle ? SKColors.Black : SKColors.White,
BackgroundColor = SKColors.Clear,
LabelColor = Utility.Present.RequestedTheme == OSAppTheme.Gentle
? SKColors.Black
: SKColors.White,
BorderLineSize = 4,
PointSize = 20,
LineSize = 8,
};
Thanks prematurely!
[ad_2]
