[quickfix] showControls on area chart

This commit is contained in:
Maxime Beauchemin 2016-06-22 14:21:09 -07:00
parent 3ef79bbaf3
commit f25e37579d
1 changed files with 1 additions and 1 deletions

View File

@ -143,11 +143,11 @@ function nvd3Vis(slice) {
case 'area':
chart = nv.models.stackedAreaChart();
chart.showControls(false);
chart.style(fd.stacked_style);
chart.xScale(d3.time.scale.utc());
chart.xAxis
.showMaxMin(false)
.showControls(false)
.staggerLabels(true);
break;