From afa9784841d3eae24257d0ff1206fc6c0f1e830c Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Fri, 9 Sep 2016 07:20:25 +0100 Subject: [PATCH] Stop data flowing off graph --- lib/bandwidth-chart.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bandwidth-chart.js b/lib/bandwidth-chart.js index 97ec289..190585c 100644 --- a/lib/bandwidth-chart.js +++ b/lib/bandwidth-chart.js @@ -38,7 +38,7 @@ function pointsFromBandwidthData(values, numPoints) { module.exports = values => { if(values && values.length) { - const points = pointsFromBandwidthData(values, 57); + const points = pointsFromBandwidthData(values, 56); return chart(points, { width: 125, height: 20,