Hello
I'm testing the SfChart and I'm facing a strange problem. Using a very basic example it is possible to see my question:
XAML
<chart:SfChart x:Name="Chart" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand">
<chart:PieSeries
XBindingPath="Name"
YBindingPath="Value"
StartAngle="75"
EndAngle ="435"
EnableSmartLabels="True"
ConnectorLineType = "Bezier"
DataMarkerPosition = "OutsideExtended">
<chart:PieSeries.DataMarker>
<chart:ChartDataMarker LabelContent="Percentage" UseSeriesPalette="True" />
</chart:PieSeries.DataMarker>
</chart:PieSeries>
</chart:SfChart>
C#
namespace App2
{
public partial class MainPage : ContentPage
{
public MainPage()
{
InitializeComponent();
Chart.Series[0].ItemsSource = Enumerable.Range(0, 10).Select(i => new { Name = i.ToString(), Value = i });
}
}
}
On iOS works correctly as well.
I am sending the project used in the test.
Attachment:
App2_572cfa73.rar