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
precision for marks and axis lables
Re: precision for marks and axis lables
I found the answer
some thing like:
var decimals = 4;
LineSer.decimals = decimals;
LineSer.vertAxis.labels.decimals = decimals;
some thing like:
var decimals = 4;
LineSer.decimals = decimals;
LineSer.vertAxis.labels.decimals = decimals;
Re: precision for marks and axis lables
Hello,
You can do something like this:
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;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |