aboutsummaryrefslogtreecommitdiff
path: root/app/static
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2019-06-10 14:33:18 +0100
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2019-06-10 14:33:18 +0100
commit92fec7ee47b240801a0fdcbba32fc9c3eceef869 (patch)
treec45465d0af812e6246136a991a9163bea5073b89 /app/static
parentbump version and update changelog (diff)
downloadAnnotateChange-92fec7ee47b240801a0fdcbba32fc9c3eceef869.tar.gz
AnnotateChange-92fec7ee47b240801a0fdcbba32fc9c3eceef869.zip
Increase zoom extent
Diffstat (limited to 'app/static')
-rw-r--r--app/static/js/makeChart.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/static/js/makeChart.js b/app/static/js/makeChart.js
index ad001b9..85d743b 100644
--- a/app/static/js/makeChart.js
+++ b/app/static/js/makeChart.js
@@ -79,7 +79,7 @@ function baseChart(selector, data, clickFunction, annotations, annotationFunctio
// Initialise the zoom behaviour
var zoomObj = d3.zoom()
- .scaleExtent([1, 50])
+ .scaleExtent([1, 100])
.translateExtent([[0, 0], [width, height]])
.extent([[0, 0], [width, height]])
.on("zoom", zoomTransform);