Hello
is it possible to transform the Item Label Format of ColumnChart?:
i want to transform for example 1000 to 1.000, 1000000 to 1.000.000 etc...
so tausend delimiter symbol
Thank for helping
You can set chart.Axis.Y.Labels.ItemFormatString = "<DATA_VALUE:n>"
Hi Max,
This work fine just one problem i dont want for Dava_value < 1000 the comma (58 is now 58,00 etc...)
thanks
Thanks Max, now it work great.
If you only display integer values on the axis you can use DATA_VALUE:n0. This will not display any decimal places. We use standard string formatting for the numeric labels. You can read about it in more detail here:http://msdn.microsoft.com/en-us/library/dwhawy9k(VS.71).aspx