Group: Forum Members
Last Active: 11 Years Ago
Posts: 29,
Visits: 1
|
I have the following code:
Dim axisY As NAxis = Chart.Axis(StandardAxis.PrimaryY) Dim lsc As NLinearScaleConfigurator = CType(axisY.ScaleConfigurator, NLinearScaleConfigurator)
lsc.LabelValueFormatter = New NNumericValueFormatter("#,###,##0.###########")
Chart.Axis(StandardAxis.PrimaryY).ScaleConfigurator = lsc
What I want is put the numbers with blanc spaces instead of "comas". I tried this but it doesn't work:
lsc.LabelValueFormatter = New NNumericValueFormatter("# ### ##0.###########")
Is there any solution for that issue ????
|