diff options
author | Gehad elrobey <gehadelrobey@gmail.com> | 2014-07-04 14:37:12 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-07-04 06:36:24 -0700 |
commit | 89f86a57452df500abec050cbc8599e4bc908d2a (patch) | |
tree | 6a114050cf0fd9626a5732626e21186e3bbf4f68 /theme | |
parent | f46463ac53b0dcde663ade9b6dae6c12144649a3 (diff) | |
download | subsurface-89f86a57452df500abec050cbc8599e4bc908d2a.tar.gz |
HTML: depth value must be positive
Remove negative sign from the inverted y-axis
Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com>
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'theme')
-rw-r--r-- | theme/list_lib.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/theme/list_lib.js b/theme/list_lib.js index 23906b480..718ea4cc7 100644 --- a/theme/list_lib.js +++ b/theme/list_lib.js @@ -800,7 +800,6 @@ function canvas_draw() } } for (var i = 0; i < items[dive_id].events.length; i++) { - //var x = get_sample(items[dive_id].events[i].time); d3.push([ items[dive_id].events[i].time / 60, 0, @@ -875,7 +874,8 @@ function canvas_draw() max : 0, tickRenderer : $.jqplot.CanvasAxisTickRenderer, tickOptions : { - formatString : '%.2f' + formatter: function(format, value) { return -1 * value + "m"; }, + formatString : '%.2fm' }, pad : 2.05 }, @@ -893,6 +893,7 @@ function canvas_draw() showMark: false, showLabel: false, shadow: false, + formatString : '%i C', }, }, } |