firefly-iii/public/js/gcharts.options.js

180 lines
3.7 KiB
JavaScript
Raw Normal View History

2015-02-06 00:23:26 -06:00
var defaultLineChartOptions = {
curveType: 'function',
legend: {
position: 'none'
},
interpolateNulls: true,
lineWidth: 1,
chartArea: {
left: 50,
top: 10,
width: '85%',
height: '80%'
},
height: 400,
2015-03-16 12:02:52 -05:00
colors: ["#4285f4", "#db4437", "#f4b400", "#0f9d58", "#ab47bc", "#00acc1", "#ff7043", "#9e9d24", "#5c6bc0", "#f06292", "#00796b", "#c2185b"],
hAxis: {
textStyle: {
color: '#838383',
},
baselineColor: '#aaaaaa',
gridlines: {
color: 'transparent'
}
},
2015-03-20 09:54:40 -05:00
fontName: 'Roboto',
fontSize: 11,
2015-03-16 12:02:52 -05:00
vAxis: {
textStyle: {
color: '#838383',
},
baselineColor: '#aaaaaa',
format: '\u20AC #'
}
2015-02-06 00:23:26 -06:00
};
var defaultBarChartOptions = {
height: 400,
bars: 'horizontal',
2015-03-16 12:02:52 -05:00
hAxis: {
textStyle: {
color: '#838383',
},
baselineColor: '#aaaaaa',
format: '\u20AC #'
},
2015-03-20 09:54:40 -05:00
fontName: 'Roboto',
fontSize: 11,
2015-03-16 12:02:52 -05:00
colors: ["#4285f4", "#db4437", "#f4b400", "#0f9d58", "#ab47bc", "#00acc1", "#ff7043", "#9e9d24", "#5c6bc0", "#f06292", "#00796b", "#c2185b"],
vAxis: {
textStyle: {
color: '#838383',
},
2015-03-16 13:03:52 -05:00
textPosition: 'in',
2015-03-16 12:02:52 -05:00
gridlines: {
2015-03-16 13:03:52 -05:00
2015-03-16 12:02:52 -05:00
color: 'transparent'
},
baselineColor: '#aaaaaa'
},
2015-02-06 00:23:26 -06:00
chartArea: {
2015-03-16 13:03:52 -05:00
left: 15,
2015-02-06 00:23:26 -06:00
top: 10,
width: '100%',
height: '90%'
},
legend: {
position: 'none'
},
};
var defaultComboChartOptions = {
height: 300,
chartArea: {
left: 75,
top: 10,
width: '100%',
height: '90%'
},
vAxis: {
minValue: 0,
format: '\u20AC #'
},
2015-03-20 09:54:40 -05:00
fontName: 'Roboto',
fontSize: 11,
2015-02-06 00:23:26 -06:00
legend: {
position: 'none'
},
series: {
0: {type: 'line'},
1: {type: 'line'},
2: {type: 'bars'}
},
bar: {groupWidth: 20}
};
var defaultColumnChartOptions = {
height: 400,
chartArea: {
left: 50,
top: 10,
width: '85%',
height: '80%'
},
2015-03-20 09:54:40 -05:00
fontName: 'Roboto',
fontSize: 11,
2015-03-16 12:02:52 -05:00
hAxis: {
textStyle: {
color: '#838383',
},
gridlines: {
color: 'transparent'
},
baselineColor: '#aaaaaa'
},
colors: ["#4285f4", "#db4437", "#f4b400", "#0f9d58", "#ab47bc", "#00acc1", "#ff7043", "#9e9d24", "#5c6bc0", "#f06292", "#00796b", "#c2185b"],
vAxis: {
textStyle: {
color: '#838383',
},
baselineColor: '#aaaaaa',
format: '\u20AC #'
},
2015-02-06 00:23:26 -06:00
legend: {
position: 'none'
},
};
var defaultStackedColumnChartOptions = {
height: 400,
chartArea: {
left: 50,
top: 10,
width: '85%',
height: '80%'
},
legend: {
position: 'none'
},
2015-03-20 09:54:40 -05:00
fontName: 'Roboto',
fontSize: 11,
2015-02-06 00:23:26 -06:00
isStacked: true,
colors: ["#4285f4", "#db4437", "#f4b400", "#0f9d58", "#ab47bc", "#00acc1", "#ff7043", "#9e9d24", "#5c6bc0", "#f06292", "#00796b", "#c2185b"],
hAxis: {
textStyle: {
color: '#838383',
},
gridlines: {
color: 'transparent'
}
},
vAxis: {
textStyle: {
color: '#838383',
},
format: '\u20AC #'
}
};
var defaultPieChartOptions = {
chartArea: {
left: 0,
top: 0,
width: '100%',
height: '100%'
},
2015-03-20 09:54:40 -05:00
fontName: 'Roboto',
fontSize: 11,
2015-02-06 00:23:26 -06:00
height: 200,
legend: {
position: 'none'
},
colors: ["#4285f4", "#db4437", "#f4b400", "#0f9d58", "#ab47bc", "#00acc1", "#ff7043", "#9e9d24", "#5c6bc0", "#f06292", "#00796b", "#c2185b"]
};