Skip to content

Commit

Permalink
Fix for issue #87
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Reed committed Jun 14, 2017
1 parent 25bacc3 commit 00cfb62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/charting/chart.js
Expand Up @@ -196,7 +196,7 @@ export function buildD3Chart(robot, room, metricName, metricList, sampleInterval
.text(__chooseLabel__(metricName));

// Add the Y Axis
svg.append("g").call(d3.axisLeft(y).ticks(5).tickFormat(d3.format(".0s")));
svg.append("g").call(d3.axisLeft(y).ticks(4, "s"));

let buf = Buffer.from(document.d3.select("body").html());

Expand Down

0 comments on commit 00cfb62

Please sign in to comment.