Hello to all SF team, I have been troubling formatting the values of my chart
I've tried with the next code:
ChartTrackballBehavior behavior = new ChartTrackballBehavior();
behavior.LabelStyle = new ChartTrackballLabelStyle();
behavior.LabelStyle.LabelFormat = "0:0,0";
In example in my ViewModel I fill the chart with values
Serie1.Add(new M_Chart() { Date= item.Fecha_NuevoFormato, TipoCambio = 500000});
But my result still the value I inserted
I want to format the charts values like the next way
Input
500000
700000
Output
500,000
700,000
Wich is the property I must to modify?