PieSeries and Label

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 });
        }
    }
}

When I run on Android, the DataMarker Labels do not have background, and the connectors lines have the same color (https://ibb.co/eugwJF). On the other hand, when I run on UWP, for example, the app works as expected (https://ibb.co/d4bJXa). That example is based on this documentation.

On iOS works correctly as well.

I am sending the project used in the test.

Attachment: App2_572cfa73.rar

1 Reply

SP Saravana Pandian Murugan Syncfusion Team May 30, 2017 11:05 AM UTC

Hi Marcos,

Thanks for your interest in Syncfusion components.

A support incident has been created under your account and we request you to login into our Direct Trac support system for further updates on this issue. Our Direct Trac support system can be accessed from the following link.

Link: https://www.syncfusion.com/account/login?ReturnUrl=%2fsupport%2fdirecttrac%2fincidents  

Regards,
Saravana Pandian M.


Loader.
Up arrow icon