gpt4 book ai didi

jquery - 使用 c3 库 (JQuery) 更新圆环图

转载 作者:行者123 更新时间:2023-12-01 01:14:18 25 4
gpt4 key购买 nike

我需要使用 c3 库更新圆环图。该图表由以下代码创建:

function (datapie) {   
var chart = c3.generate({
bindto: '#idpiechart',
color: {
pattern: Colors,
},
data: {
columns: datapie,
type: 'pie',
});
}

现在我只需要从另一个函数更新此图表,我使用 load 方法,但这不起作用:

function(updatedata){
var pie = $("#idpiechart");
pie.load({
columns: updatedata
});
}

最佳答案

看着这个sample code ,您需要对从 c3.generate 返回的 chart 对象调用 update:

var chart = null;
function (datapie) {
chart = c3.generate({
bindto: '#idpiechart',
color: {
pattern: Colors,
},
data: {
columns: datapie,
type: 'pie',
});
}

function(updatedata){
chart.load({
columns: updatedata
});
}

关于jquery - 使用 c3 库 (JQuery) 更新圆环图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30291088/

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