gpt4 book ai didi

javascript - 渲染分页符中的多个谷歌图表

转载 作者:行者123 更新时间:2023-11-28 03:14:29 25 4
gpt4 key购买 nike

我正在使用 Google Chart ,我正在尝试在单个 HTML 页面中插入两个条形图。

Graphs 数据从两个单独的 AJAX 请求加载,并正确呈现,如下所示:

enter image description here

当我再次运行第一个 AJAX 请求来更新第一个图的数据时,它破坏了第二个图的可视化:

enter image description here

这只发生在垂直对齐的图表上。乍一看,可视化似乎与第一张图的数据跨度有关。我也在使用 bootstrap 3。我包含相关代码:

标记:

<div class="row">
<div class="col-md-12">
<div class="chart">
<div class="chart-content" id="chart1"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="chart">
<div class="chart-content" id="chart2"></div>
</div>
</div>
</div>

CSS:

.chart {
display: block;
height: 400px;
}

.chart-content {
width: 100%;
height: 100%;
}

JS:

var charts = {}

var chart1Update = function() {
$.ajax({
...
success: function(res){
// res manipulation
// ...
var data = new google.visualization.arrayToDataTable(res);

var options = {
legend: {position: 'none'},
bars: 'horizontal',
bar: {groupWidth: "90%"},
colors: ['#26A9D4']
}

if(!charts.chart1){
charts.chart1 = new google.charts.Bar(document.getElementById('chart1'));
google.visualization.events.addListener(charts.chart1, 'ready', function(){ // .. irrelevant stuff }

charts.chart1.draw(data, options);
}
})
}

// chart2Update -> identical to chart1Update with only reference to chart1 changed to chart2, plus a different color

关于如何解决这个问题或至少如何调查它有什么想法吗?

最佳答案

仅供引用,这是 Google Visualization API 开发人员确认的错误。 https://code.google.com/p/google-visualization-api-issues/issues/detail?id=1916

关于javascript - 渲染分页符中的多个谷歌图表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28904169/

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