Allows you to localize the value formatting for a specific language and region.
The following code formats the numbers of the PrimaryY axis in accordance with the
Norwegian-Bokmal locale (uses a "," instead of "." as a the decimal separator).
Imports System.Globalization
...
Dim ci As CultureInfo = New CultureInfo("nb-NO")
Chart.Axis(StandardAxis.PrimaryY).ValueFormat.CultureInfo = ci
using System.Globalization;
...
CultureInfo ci = new CultureInfo("nb-NO");
Chart.Axis(StandardAxis.PrimaryY).ValueFormat.CultureInfo = ci;
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2