Skip to content

Commit

Permalink
[bugfix] nvd3's API changed and broke the range filter (#903)
Browse files Browse the repository at this point in the history
* [bugfix] nvd3's API changed and broke the range filter

* Removing if that is not needed
  • Loading branch information
mistercrunch committed Aug 11, 2016
1 parent efdfa81 commit 9a2c774
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion caravel/assets/visualizations/nvd3_vis.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function nvd3Vis(slice) {
case 'line':
if (fd.show_brush) {
chart = nv.models.lineWithFocusChart();
chart.lines2.xScale(d3.time.scale.utc());
chart.focus.xScale(d3.time.scale.utc());
chart.x2Axis
.showMaxMin(fd.x_axis_showminmax)
.staggerLabels(false);
Expand Down

0 comments on commit 9a2c774

Please sign in to comment.