gpt4 book ai didi

javascript - 在 c3.js 中将 % gauge chart 更改为精确值

转载 作者:搜寻专家 更新时间:2023-11-01 04:47:12 25 4
gpt4 key购买 nike

我正在尝试更改仪表图表的单位。我不想默认显示 % 值,而是想显示确切的值。我在文档中查找了它,但它不完整,我不确定我应该在代码中输入哪个值来更改它。

var chart = c3.generate({
bindto: "#chart",
data: {
columns: [
['data', 15.0]
],
type: 'gauge',
},
gauge: {
min: 50,
max: 100,
units: '%' //I want to change that
}
});

最佳答案

我自己回答。要获得精确值而不是仪表图中的 %,有必要添加以下行:

var chart = c3.generate({
bindto: "#chart",
data: {
columns: [
['data', 15.0]
],
type: 'gauge',
},
gauge: {
label:{
format: function(value, ratio){
return value; //returning here the value and not the ratio
},
},
min: 50,
max: 100,
units: '%' //this is only the text for the label
}
});

关于javascript - 在 c3.js 中将 % gauge chart 更改为精确值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27004001/

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