Skip to content

Commit

Permalink
Fix error that cut off the last few nodes for subejct lines and means.
Browse files Browse the repository at this point in the history
  • Loading branch information
anotherjoshsmith committed Mar 7, 2018
1 parent 56d6714 commit 2a56849
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion afqbrowser/site/client/js/plots.js
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ afqb.plots.ready = function (error, data) {
var len = afqb.plots.tractMean[i].values.length;
var id = afqb.global.formatKeyName(afqb.plots.tracts[i]); // Subject to ordering errors since we call
afqb.plots.xScale[id] = d3.scale.linear()
.range([afqb.plots.axisOffset.left, afqb.plots.axisOffset.left + afqb.plots.w])
.range([afqb.plots.axisOffset.left, afqb.plots.w])
.domain([0, len]);

});
Expand Down

0 comments on commit 2a56849

Please sign in to comment.