aboutsummaryrefslogtreecommitdiffstats
path: root/web/js
diff options
context:
space:
mode:
authorMartin Wright <martin@mysociety.org>2018-03-28 15:24:21 +0100
committerMatthew Somerville <matthew-github@dracos.co.uk>2018-04-06 17:43:30 +0100
commit2a569a3b42465cfb51ae5073d6885ed758072ecf (patch)
tree64da2244b9f79f214eecfc325954e642838d99a8 /web/js
parentb02794bd4f3070d302a965cd2b9e04d430a7cddc (diff)
No longer horizontally align label with JS.
Fixes positioning bugs in all versions of IE due to calculating the wrong horizontal position.
Diffstat (limited to 'web/js')
-rw-r--r--web/js/dashboard.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/web/js/dashboard.js b/web/js/dashboard.js
index 1f7f7c3e5..82b5e6188 100644
--- a/web/js/dashboard.js
+++ b/web/js/dashboard.js
@@ -27,7 +27,6 @@ $(function(){
var setUpLabelsForChart = function(chart){
var $parent = $(chart.chart.canvas).parent();
- var xGutterInPixels = 30;
var lasty = 0;
$.each(chart.config.data.datasets, function(datasetIndex, dataset){
@@ -38,8 +37,7 @@ $(function(){
y = lasty;
}
$label.css({
- top: y,
- left: latestPoint._model.x + xGutterInPixels
+ top: y
});
lasty = y + $label.height() + 8;
});