I'm trying to change the label format of a DoughnutSeries to something like this: 2.157,38 €
CurrentCulture and CurrentUICulture are both set to de-DE with the result that formatting in Xamarin Forms works as expected.
I tried setting LabelFormat of the DataMarkerLabelStyle to different formats but none of them work as expected:
C2 -> C2158 (this is what I use as StringFormat in my bindings in XF)
#,##0.00 € -> 2,157.38 € (point and comma are inverted, seems like it is using en-US?)
How can I achieve my desired format? Thanks!