in server/src/main/resources/twitter-server/js/histogram-dom.js [6:42]
function drawChart(_title, log_scale, fmt) {
var options = {
hAxis: {
title: "",
logScale: log_scale
},
series: {
0: { lineWidth: 4 }
},
vAxis: {
title: fmt,
titleTextStyle: {
color: 'black',
fontName: 'Helvetica Neue',
fontSize: 18,
italic: false,
bold: false
},
ticks: [0, 0.2, 0.4, 0.6, 0.8, 1.0],
logScale: false
},
title: _title,
titleTextStyle: {
color: 'black',
fontSize: 24,
fontName: 'Helvetica Neue',
italic: false,
bold: true
},
legend: {position: 'none'},
curveType: 'none',
colors: ['#428bca', '#000000']
};
var chart = new google.visualization.AreaChart(document.getElementById('curve_chart'));
chart.draw(data, options);
}