From 2c7c1a19c00b9adcdc5e1f408e1a00e1f7655599 Mon Sep 17 00:00:00 2001 From: Matt Date: Fri, 11 Apr 2014 17:38:40 -0600 Subject: [PATCH] Integers only for yaxis on blocks chart --- website/static/stats.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/static/stats.js b/website/static/stats.js index 10e43d6..843720f 100644 --- a/website/static/stats.js +++ b/website/static/stats.js @@ -130,6 +130,8 @@ function displayCharts(){ poolBlockChart.xAxis.tickFormat(timeOfDayFormat); + poolBlockChart.yAxis.tickFormat(d3.format('d')); + d3.select('#poolBlocks').datum(poolBlockData).call(poolBlockChart); return poolBlockChart;