Page 1 of 1

precision for marks and axis lables

Posted: Tue Sep 27, 2016 7:28 am
by 17778358
Hi,
When I have a series with values like 0.0029, 0.003, 0.0031, 0.0032
The left axis will show 0.00 and the marks on the graph also will show 0.00.
Is there a way to change the default precision?

Thanks
Amos

Re: precision for marks and axis lables

Posted: Tue Sep 27, 2016 9:33 am
by 17778358
I found the answer

some thing like:
var decimals = 4;
LineSer.decimals = decimals;
LineSer.vertAxis.labels.decimals = decimals;

Re: precision for marks and axis lables

Posted: Tue Sep 27, 2016 9:39 am
by yeray
Hello,

You can do something like this:

Code: Select all

            Chart1.axes.left.labels.fixedDecimals = true;
            Chart1.axes.left.labels.decimals = 4;

            Chart1.axes.left.increment = 0.0001;