gpt4 book ai didi

javascript - 在 Google 图表中显示单位

转载 作者:行者123 更新时间:2023-12-04 16:12:49 25 4
gpt4 key购买 nike

我有一个 圆环图使用谷歌图表

enter image description here

我的下行链路值为 514494797。

我想展示它旁边的单位。前任。 514494797 kbps。

我如何做到这一点?

数据

var data = google.visualization.arrayToDataTable([
['Task', 'Bandwith'],
['downlink', {{$private['down_bytes']}}], // data from controller
['uplink', {{$private['up_bytes']}}] // data from controller
]);

选项
var options = {
legend: 'none',
pieSliceText: 'label',
title: 'Private',
colors: ['#77DD77', '#008000'],
width:'100%',
height: 300,
pieHole: 0.4,


};

最佳答案

关键是用NumberFormat()函数,并指定 suffix
解决方案

    var formatter = new google.visualization.NumberFormat({
suffix: 'kbps'
});

formatter.format(data, 1);

结果

enter image description here

关于javascript - 在 Google 图表中显示单位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33903283/

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