International settings/Numberformat

S

sjurba

Hi, I am creating some charts with OWC on asp.net WebForms (VB) that are
streamed to the clients as gifs in the code behind.

I want the numbers on my axis to look like this:
200.000
300.000

Meaning 200.000 = 200000 (200 thousand)

How can I do this?

What I essentially need to do is set the numberGroupSeparator. I have
tried the following with out any luck:

Dim myinfo As CultureInfo = New CultureInfo("nb-NO", True)
myinfo.NumberFormat.NumberGroupSeparator = "."
System.Threading.Thread.CurrentThread.CurrentCulture = myinfo

Is it at all possible to control this? And how can I do it?

Sjur
 
Top