gpt4 book ai didi

javascript - Google chart api explorer 与 selecthandler

转载 作者:行者123 更新时间:2023-11-28 05:59:52 25 4
gpt4 key购买 nike

我在使用 Google.charts api 时遇到问题...我有这样的图表绘制功能:

      function columnDraw(sectionname) {

var data = google.visualization.arrayToDataTable(array);
var view = new google.visualization.DataView(data);
var options = {
title: "Activity of users",
bar: {groupWidth: "100%"},
legend: {position: "top"},
height: 300,
// explorer: {
//maxZoomOut:0
//maxZoomIn: 50,
// keepInBounds: true,
// axis: 'horizontal'
// },
hAxis: {
title: 'Amount of activity',
minValue : 0,
format: '0'
},
vAxis: {
title: 'Amount of users',
minValue : 0,
format: '0'

}


};
var chart = new google.visualization.ColumnChart(document.getElementById(sectionname));

function selectHandler() {
var selectedItem = chart.getSelection()[0];
if (selectedItem) {
document.getElementById("input0").value = data.getValue(selectedItem.row, 0);
}
}
google.visualization.events.addListener(chart, 'select', selectHandler);
chart.draw(view, options);
}

我想通过单击来选择图表列的某些部分,但我在缩放时遇到了问题。此代码有效,但一旦我取消对资源管理器部分的注释,selectHandler 函数将无法正常工作。谁能告诉我它有什么问题吗?

最佳答案

你少了一个“,”

           maxZoomOut:0,

关于javascript - Google chart api explorer 与 selecthandler,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36822966/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com