Skip to content

Commit

Permalink
d3 upgrade axis
Browse files Browse the repository at this point in the history
  • Loading branch information
PieterGit committed Oct 18, 2019
1 parent 06a8a92 commit 1ac583c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/report_plugins/calibrations.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,11 +152,11 @@ calibrations.report = function report_calibrations (datastorage, sorteddaystosho
yScale2 = d3.scaleLinear()
.domain([0, 400000]);

var xAxis2 = d3.svg.axisBottom()
var xAxis2 = d3.axisBottom()
.scale(xScale2)
.ticks(10);

var yAxis2 = d3.svg.axisLeft()
var yAxis2 = d3.axisLeft()
.scale(yScale2);

// get current data range
Expand Down

0 comments on commit 1ac583c

Please sign in to comment.