gpt4 book ai didi

javascript - 垂直平移 Google 柱形图

转载 作者:行者123 更新时间:2023-11-29 17:15:42 24 4
gpt4 key购买 nike

是否有任何 JavaScript 或水平平移 Google 柱形图的示例?我有几个月的数据,我希望用户能够从左到右查看它。这是我想要的功能:http://almende.github.io/chap-links-library/js/graph/examples/example05_gaps_in_data.html .我的用户反对使用带注释的时间线。

最佳答案

您可以将 ColumnChart Hook 到 ChartRangeFilter并获取 AnnotatedTimeline 的平移和缩放功能。

[编辑]

新版本的可视化 API 支持通过 explorer 缩放和平移图表 option .默认允许用户使用滚轮缩放并通过单击和拖动进行平移。这是一个例子:

function drawChart() {
var data = new google.visualization.DataTable();
data.addColumn('number', 'X');
data.addColumn('number', 'Y');
var y = 50;
for (var i = 0; i < 1000; i++) {
y += Math.ceil(Math.random() * 3) * Math.pow(-1, Math.floor(Math.random() * 2));
data.addRow([i, y]);
}

var chart = new google.visualization.LineChart(document.getElementById('chart_div'));
chart.draw(data, {
height: 400,
width: 600,
explorer: {
axis: 'horizontal',
keepInBounds: true
}
});
}
google.load('visualization',

jsfiddle:http://jsfiddle.net/asgallant/KArng/

关于javascript - 垂直平移 Google 柱形图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18336610/

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