Move legends to below chart to avoid word wrapping issues

Closes #773
This commit is contained in:
Lee Willis 2015-02-01 15:17:58 +00:00 committed by Dan Cryer
parent 3ddc723e1f
commit 25358cdfd5
2 changed files with 4 additions and 2 deletions

View file

@ -55,7 +55,8 @@ var locPlugin = ActiveBuild.UiPlugin.extend({
hAxis: {title: Lang.get('builds')},
vAxis: {title: Lang.get('lines')},
backgroundColor: { fill: 'transparent' },
height: 275
height: 275,
legend: {position: 'bottom'}
};
$('#build-lines-chart').show();

View file

@ -97,7 +97,8 @@ var warningsPlugin = ActiveBuild.UiPlugin.extend({
vAxis: {title: Lang.get('issues'), logScale:true},
backgroundColor: { fill: 'transparent' },
height: 275,
pointSize: 3
pointSize: 3,
legend: {position: 'bottom'}
};
$('#build-warnings-chart').show();