作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在使用 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/
我一直在尝试在堆积条形图中添加可点击的链接。我根本找不到任何解决办法。有人可以帮助我吗?我想要的是当我点击数据时,它会根据点击的数据转到链接 Image of the column 我正在使用这个Go
我在使用 Google.charts api 时遇到问题...我有这样的图表绘制功能: function columnDraw(sectionname) { var data
我是一名优秀的程序员,十分优秀!