Googleゲージを縦に並べたい。これは私の JavaScript コードです (Google Playground からのコピー ペーストです)。
<script type='text/javascript'>
google.load('visualization', '1', {packages:['gauge']});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Label', 'Value'],
['Memory', 80],
['CPU', 55],
['Network', 68]
]);
var options = {
width: 400, height: 120,
redFrom: 90, redTo: 100,
yellowFrom:75, yellowTo: 90,
minorTicks: 5
};
var chart = new google.visualization.Gauge(document.getElementById('menu2'));
chart.draw(data, options);
}
</script>
そして、これは私のhtml divです
<div id="menu2"></div>
とcss
#menu2
{
background-color:#FFD700;
height:570px;
width:150px;
float:right;
}
何か案が?