こんな風にGoogle Graph APIを使って折れ線グラフを描きたい
I have 24 values mean (1 day = 24 hours) in x-axis from 0 to 23
And i have 3 column in y-axis today , yesterday and week.
だから私は、今日、昨日、1 週間の 1 時間ごとに 12 個の値のような値を表示したいと考えています。
たとえば、6 時間ある場合、最大 36 の値を y 軸に表示する必要があります。今日、週、昨日それぞれ 12 です。
以下のこのコードを使用してこれを行う方法。
<html>
<head>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("visualization", "1", {packages:["corechart"]});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Year', 'Sales', 'Expenses'],
['2004', 1000, 400],
['2004', 1011, 420],
['2004', 1004, 430],
['2005', 1170, 460],
['2006', 660, 1120],
['2007', 1030, 540]
]);
var options = {
title: 'Company Performance' ,
hAxis: { minValue: 0, maxValue: 15},
vAxis: { minValue: 0, maxValue: 15},
legend: 'none'
};
var chart = new google.visualization.LineChart(document.getElementById('chart_div'));
chart.draw(data, options);
}
</script>
</head>
<body>
<div id="chart_div" style="width: 680px; height: 285px;margin-top: 10px;margin-left: 10px;"></div>
</body>
</html>
ありがとう