gpt4 book ai didi

charts - 在堆积条形谷歌图表中显示百分比

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

// Display google stacked bar chart
var view = new google.visualization.DataView(data);
view.setColumns([0, 1, {
calc: "stringify",
sourceColumn: 1,
type: "string",
role: "annotation"
},
2]);

下面是堆叠的图片 bar chart我有。

enter image description here

我无法在绿色条上显示百分比,但不能在红色条上显示。
绿色条中的当前值不是百分比值。

最佳答案

每个系列都需要一个注释列...

var view = new google.visualization.DataView(data);
view.setColumns([0,
// series 0
1, {
calc: "stringify",
sourceColumn: 1,
type: "string",
role: "annotation"
},
// series 1
2, {
calc: "stringify",
sourceColumn: 2,
type: "string",
role: "annotation"
}
]);

编辑

将注释值格式化为百分比

更换 "stringify"带有自定义函数的函数

使用 NumberFormat formatter格式化值

请参阅以下工作片段...

google.charts.load('current', {
callback: drawSeriesChart,
packages: ['corechart']
});

function drawSeriesChart() {
var data = new google.visualization.DataTable();
data.addColumn('string', 'Month');
data.addColumn('number', 'Category A');
data.addColumn('number', 'Category B');
data.addRows([
['Sep', 100, 190],
['Oct', 220, 178]
]);

var formatPercent = new google.visualization.NumberFormat({
pattern: '#,##0.0%'
});

var view = new google.visualization.DataView(data);
view.setColumns([0,
// series 0
1, {
calc: function (dt, row) {
return dt.getValue(row, 1) + ' (' + formatPercent.formatValue(dt.getValue(row, 1) / (dt.getValue(row, 1) + dt.getValue(row, 2))) + ')';
},
type: "string",
role: "annotation"
},
// series 1
2, {
calc: function (dt, row) {
return dt.getValue(row, 2) + ' (' + formatPercent.formatValue(dt.getValue(row, 2) / (dt.getValue(row, 1) + dt.getValue(row, 2))) + ')';
},
type: "string",
role: "annotation"
}
]);

var chart = new google.visualization.BarChart(document.getElementById('chart_div'));
chart.draw(view, {
isStacked: 'percent'
});
}
<script src="https://www.gstatic.com/charts/loader.js"></script>
<div id="chart_div"></div>


更新的屏幕截图
For reference to my COMMENT

关于charts - 在堆积条形谷歌图表中显示百分比,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40647885/

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