Commit 864d02128fbf7e015c70e0723b162f4d0b09dcfa
1 parent
2ea6eb0d
Exists in
master
and in
95 other branches
Precision set to 5 (#7331)
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
js/app/views/PlotTabResultUI.js
... | ... | @@ -201,7 +201,7 @@ Ext.define('amdaUI.PlotTabResultUI', { |
201 | 201 | |
202 | 202 | getAxisValue: function(axis, pixelMin, pixelMax, pixelVal) { |
203 | 203 | var val = amdaPlotComp.PlotContextManager.toAxisValue(axis, pixelMin, pixelMax, pixelVal); |
204 | - return parseFloat(val).toPrecision(2); | |
204 | + return parseFloat(val).toPrecision(5); | |
205 | 205 | }, |
206 | 206 | |
207 | 207 | createPlotImage: function(resultFolder, plotFile) { |
... | ... |