Hi,
I created pie control using percentages as below. it shows results perfectly with percentage using smart labels. And when I tap on the pie in Android or mouse over in UWP as shown in the screenshot, it shows the total count of the pie element. I dont know what is this feature called but is it possible to amend the text like, instead of "33" as in the image, "33 items"?
<chart:SfChart x:Name="Chart" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand">
<chart:SfChart.Legend>
<chart:ChartLegend OverflowMode="Wrap" Orientation="Horizontal" DockPosition="Top">
<chart:ChartLegend.LabelStyle>
<chart:ChartLegendLabelStyle TextColor="Blue" Margin="5" Font="Bold, Micro" />
</chart:ChartLegend.LabelStyle>
</chart:ChartLegend>
</chart:SfChart.Legend>
<chart:SfChart.Title>
<chart:ChartTitle Text="{Binding ChartTitle}"/>
</chart:SfChart.Title>
<chart:PieSeries ExplodeAll="False" EnableSmartLabels="True" ConnectorLineType="Bezier" DataMarkerPosition="OutsideExtended" EnableTooltip="True" CircularCoefficient="1" StartAngle="0" EndAngle="360"
ItemsSource="{Binding ChartItems, Mode=OneWay}" XBindingPath="Name" YBindingPath="Value"
>
<chart:PieSeries.DataMarker>
<chart:ChartDataMarker ShowLabel="True" LabelContent="Percentage">
<!--<chart:ChartDataMarker.LabelStyle>
<chart:DataMarkerLabelStyle LabelFormat="0"/>
</chart:ChartDataMarker.LabelStyle>
<chart:ChartDataMarker.ConnectorLineStyle>
<chart:ConnectorLineStyle StrokeColor="Gray" StrokeWidth="2"/>
</chart:ChartDataMarker.ConnectorLineStyle>-->
</chart:ChartDataMarker>
</chart:PieSeries.DataMarker>
</chart:PieSeries>
<chart:SfChart.ChartBehaviors>
<chart:ChartZoomPanBehavior EnableSelectionZooming="True"/>
</chart:SfChart.ChartBehaviors>
</chart:SfChart>
