Index: lams_central/web/includes/javascript/chart.js =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/includes/javascript/chart.js,v diff -u -r1.1.2.7 -r1.1.2.8 --- lams_central/web/includes/javascript/chart.js 28 Apr 2017 03:01:44 -0000 1.1.2.7 +++ lams_central/web/includes/javascript/chart.js 28 Apr 2017 03:56:22 -0000 1.1.2.8 @@ -276,7 +276,7 @@ // where the range > 11, aim for a zoom where bucket width is no more than a half a mark var zoomFactor = range <= 11 ? 10 : Math.round(range / 5); - console.log("range "+range+" zoomFactor "+zoomFactor); + // console.log("range "+range+" zoomFactor "+zoomFactor); zoom = d3.zoom() .scaleExtent([1, zoomFactor]) .translateExtent([[0, 0], [width, height]])