Hi JC,
In ChartDirector number formatting, you can specify the decimal separator as well as the thousand separator.
To use the settings in a CultureInfo object, just use the decimal separator and/or the thousand separator in the CultureInfo object in the ChartDirector format string.
For example, instead of hard coding comma and dot as thousand and decimal separator like as follows:
"{value|,.}"
you may use:
"{value|" & System.Threading.Thread.CurrentThread.CurrentCulture.NumberFormat.NumberGroupSeparator & System.Threading.Thread.CurrentThread.CurrentCulture.NumberFormat.NumberDecimalSeparator & "}"
Hope this can help.
Regards
Peter Kwan |