I have an ASP:Chart control in a web application (ASP.Net). They are used to display some basic accounting information, like so:
However, I want to be able to change the decimal separator to a comma, for display in other countries that used the comma, e.g. -28606.62 should display as -28606,62.
I know I can change the current culture in the code behind for the page, and this will format the numbers correctly, however I am reluctant to do this as this will change the culture for the thread/page, and thus any calculations etc that may be done during the life of the page may screw up.
Is there another way of specifying the decimal separator on the ASP:Chart control?
I've tried playing with the LabelStyle.Format property, but this doesn't allow you to change the separators, only the format of the number.
Many thanks