Some formatting, cleanup, and a new chart.

This commit is contained in:
James Cole
2014-11-18 09:37:54 +01:00
parent 7e8f5c9548
commit eebac2a66d
10 changed files with 87 additions and 28 deletions

View File

@@ -51,6 +51,29 @@ var defaultBarChartOptions = {
},
};
var defaultComboChartOptions = {
height: 300,
chartArea: {
left: 75,
top: 10,
width: '100%',
height: '90%'
},
vAxis: {
minValue: 0,
format: '\u20AC #'
},
legend: {
position: 'none'
},
series: {
0: {type: 'line'},
1: {type: 'line'},
2: {type: 'bars'}
},
bar: {groupWidth: 20}
};
var defaultColumnChartOptions = {
height: 400,
chartArea: {