mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-01 00:23:23 +00:00
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>
This commit is contained in:
parent
f46463ac53
commit
89f86a5745
1 changed files with 3 additions and 2 deletions
|
@ -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',
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue