116 3rd St SE
Cedar Rapids, Iowa 52401
Home / Gambling vote (test / 2003 data)
Gambling vote (test / 2003 data)
John McGlothlen
Feb. 15, 2012 1:53 pm
#votebars {
position: relative;
top: 277px;
left: 90px;
width: 360px;
background-color: #ffffff;
}
google.load("visualization", "1", {packages:["corechart"]});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Vote', 'Yes', 'No'],
['', 27368, 30659],
]);
var options = {
vAxis: {title: 'At 9:46 p.m.', titleTextStyle: {color: 'red'}},
hAxis: {minValue: 0},
chartArea: {height:"120%"},
legend: {position: "none"},
};
var chart = new google.visualization.BarChart(document.getElementById('chart_div'));
chart.draw(data, options);
}