Reputation: 304
I wanted to ask how to increase the values of the axis to display data correctly? I tried searching the teechart options but with no luck.
Upvotes: 1
Views: 637
Reputation: 304
Posting a photo for others who might get confused where this setting can be tuned in teechart Options
Upvotes: 1
Reputation: 108929
In this case, you should either
0.0000
) on the left axis, orIn a comment to the question, the OP confirmed that the number format should be changed.
To do this at runtime, you can do
MyChart.Axes.Left.AxisValuesFormat := '0.0000';
It is also possible to do this at design-time.
Upvotes: 1