Posted 27 January 2021, 4:16 pm EST
I have defined the following PieChart
<c1:FlexPie ItemsSource="{Binding ChartItems}"
BindingName="Name"
Binding="Amount,Count"
ToolTipContent="{}{Name}
{y:n2}">
</c1:FlexPie>
Where one Pie is represening the Amount and the other Pie the Count.
I would need to have the ToolTip be formated as N2 for the Amount Pie Chart and N0 with the Count Pie Chart.
Formating the Count as 1,234.00 is undesired in my case, since a Count never has a fraction.