[quickfix] removing controls in Area chart to leave more room for the legend

This commit is contained in:
Maxime Beauchemin 2016-06-22 14:00:35 -07:00
parent 73601e4acb
commit 3ef79bbaf3

View File

@ -80,7 +80,7 @@ function nvd3Vis(slice) {
case 'dist_bar': case 'dist_bar':
chart = nv.models.multiBarChart() chart = nv.models.multiBarChart()
.showControls(false) //Allow user to switch between 'Grouped' and 'Stacked' mode. .showControls(false)
.reduceXTicks(reduceXTicks) .reduceXTicks(reduceXTicks)
.rotateLabels(45) .rotateLabels(45)
.groupSpacing(0.1); //Distance between each group of bars. .groupSpacing(0.1); //Distance between each group of bars.
@ -147,6 +147,7 @@ function nvd3Vis(slice) {
chart.xScale(d3.time.scale.utc()); chart.xScale(d3.time.scale.utc());
chart.xAxis chart.xAxis
.showMaxMin(false) .showMaxMin(false)
.showControls(false)
.staggerLabels(true); .staggerLabels(true);
break; break;