This question is locked. New answers and comments are not allowed.
The values in the chart are exhibited as "%'.2f" on iOS while on Android it works fine, outputting something like "12,345.67".
Since the textFormat documentation links to http://pubs.opengroup.org/onlinepubs/009695399/functions/printf.html I think it should as expected on both platforms.
Here is the code block on iOS:
<BarSeries tkCartesianSeries seriesName="inbound" [items]="inbound" categoryProperty="description" showLabels="true" valueProperty="value" selectionMode="none"> <PointLabelStyle tkBarLabelStyle textFormat="%'.2f" strokeColor="Transparent" fillColor="white" textColor="#808080" textSize="12"> </PointLabelStyle></BarSeries>
Here is the code block on Android:
<BarSeries tkCartesianSeries seriesName="inbound" [items]="inbound" categoryProperty="description" showLabels="true" valueProperty="value" selectionMode="none"> <PointLabelStyle tkBarLabelStyle textFormat="%,.2f" fillColor="#F4BB57" textColor="white" textSize="15"></PointLabelStyle></BarSeries>
Also tried with the same textFormat for both but th requires a slightly different syntax.
