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 58688df7cd
commit bad53fe51b
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')}, hAxis: {title: Lang.get('builds')},
vAxis: {title: Lang.get('lines')}, vAxis: {title: Lang.get('lines')},
backgroundColor: { fill: 'transparent' }, backgroundColor: { fill: 'transparent' },
height: 275 height: 275,
legend: {position: 'bottom'}
}; };
$('#build-lines-chart').show(); $('#build-lines-chart').show();

View file

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