在Google Analytic仪表板中,我发现语言,国家/地区等的表格图表中有一个会话百分比列。
如何将列添加到我的网站?目前只显示总会话列
var userSessionChart = new gapi.analytics.googleCharts.DataChart({
query: {
"dimensions": "ga:language",
"metrics": 'ga:sessions',
"start-date": start_date,
"end-date": end_date
},
chart: {
container: 'user-session-container',
type: 'TABLE',
options: {
width: '100%'
}
}
});