I upgraded to TeeChart version 6.0 from 5.0 and am now seeing a different number of decimal places than in the previous version. I used to see no decimal digits, but now I see one digit to the right of the decimal. I didn't change any code between versions. Is there a way to reset the number of decimal places so that there are none?
Any help would be greatly appreciated.
How do I change the axis decimal places
Hi,
Sure ... have a look at the ISeries.ValueFormat property in the Help file,
e.g.
Sure ... have a look at the ISeries.ValueFormat property in the Help file,
e.g.
Code: Select all
Private Sub Form_Load()
With TChart1
.Aspect.View3D = False
.AddSeries scLine
For i = 10 To 20
.Series(0).AddXY i, Rnd * 100, "", clTeeColor
Next i
.Series(0).Marks.Visible = True
.Series(0).ValueFormat = "#"
End With
End Sub
Pep Jorge
http://support.steema.com
http://support.steema.com