我正在尝试使用 Google Analytics Reporting API v4 构建多折线图。
一张图表,其中我按每天的会话计数为每个设备(台式机/平板电脑/移动设备)设置了一条线。
但现在我能得到的是:
我的代码是:
<div id="chart-1-container"></div>
<script>
gapi.analytics.ready(function () {
var dataChart1 = new gapi.analytics.googleCharts.DataChart({
query: {
'ids': 'ga:XX', // <-- Replace with the ids value for your view.
'start-date': '7daysAgo',
'end-date': 'yesterday',
'metrics': 'ga:sessions',
'dimensions': 'ga:deviceCategory'
},
chart: {
'container': 'chart-1-container',
'type': 'LINE',
'options': {
'width': '100%'
}
}
});
dataChart1.execute();
});
</script>