2
私はGoogleのグラフを持っています。私は7日間のデータをグラフに表示したい、そして過去の7日間のデータを見ることができるはずです。例えばGoogleのグラフに7日間のデータしか表示しない
私は2017年8月7日15/7/2017にが表示されるはずですgrpah 2017年1月7日Intialy
15/7/2017へのデータを持っている場合。しかし、ユーザーが望む場合、前の1/7/2017から8/7/2017の結果に戻ることができます。
は今、私は基本的に私は、グラフを壊したく七日に期間が がGoogleと、それは可能です
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>
Google Visualization API Sample
</title>
</script> <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript">
// Load google charts
google.charts.load('current', {'packages':['corechart','line']});
google.charts.setOnLoadCallback(seven_day_compare);
// Draw the chart and set the chart values
function seven_day_compare() {
var data = google.visualization.arrayToDataTable(
[["Date","likes","share"],["2017-07-01",30,20],["2017-07-02",20,20],["2017-07-03",16,10],["2017-07-4",10,15],["2017-07-5",31,66],["2017-07-6",20,15],["2017-07-7",2,5],["2017-07-8",8,6],["2017-07-09",30,20],["2017-07-10",20,20],["2017-07-11",16,10],["2017-07-12",10,15],["2017-07-13",31,66],["2017-07-14",20,15],["2017-07-15",2,5],["2017-07-16",8,6]]
);
// Optional; add a title and set the width and height of the chart
var options = {'title':'Compare like and share', 'width':550, 'height':400,'pointSize': 10,'hAxis':{
'slantedText': true,
'slantedTextAngle':30},'vAxis':{}};
// Display the chart inside the <div> element with id="differnt"
var chart = new google.visualization.LineChart(document.getElementById('chart'));
chart.draw(data, options);
}
</script>
</head>
<body style="font-family: Arial;border: 0 none;">
<div id = "chart"></div>
</body>
</html>
ああ、これは間違いなく、感謝を:)のに役立ちます。 maxvalueとminvalueを変更して特定のデータをユーザーに表示する機能をいくつか作成できます。ユーザーが前のボタンをクリックした場合、minValue:new Date(2017,7,1)、 maxValue:new Date(2017,7,8)。 BtwはminValue:new Date(2017,6,8)、 maxValue:new Date(2017,6,15)を書きました。私は6の代わりに7でなければならないと思いますか? – beginner
月はJavaScriptベースで0です(0 = 1月、1 = 2月、6 = 7月) – WhiteHat
ああ、ありがとうございます。申し訳ありません、今すぐ入手してください。私はあなたのコードを私のウェブサイトで試してみるつもりです。ありがとうございます:) – beginner