Skip to content

Commit

Permalink
replace scale.linear with scaleLinear
Browse files Browse the repository at this point in the history
  • Loading branch information
PieterGit committed Oct 18, 2019
1 parent d10ae41 commit 3445eee
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 @@ -146,10 +146,10 @@ calibrations.report = function report_calibrations (datastorage, sorteddaystosho
calibration_context = charts.append('g');

// define the parts of the axis that aren't dependent on width or height
xScale2 = d3.scale.linear()
xScale2 = d3.scaleLinear()
.domain([0, maxBG]);

yScale2 = d3.scale.linear()
yScale2 = d3.scaleLinear()
.domain([0, 400000]);

var xAxis2 = d3.svg.axis()
Expand Down

0 comments on commit 3445eee

Please sign in to comment.