gpt4 book ai didi

javascript - Chart.js 2.0 使用货币和千位分隔符格式化 Y 轴

转载 作者:可可西里 更新时间:2023-11-01 02:14:39 25 4
gpt4 key购买 nike

我在格式化我的图表轴时遇到问题,我找不到更新版本 2.0 的示例。

我怎样才能(例如)赚到 2000000 到 2000000 欧元?

我的 fiddle :https://jsfiddle.net/Hiuxing/4sLxyfya/4/

window.onload = function() {
var ctx = document.getElementById("canvas").getContext("2d");
window.myBar = new Chart(ctx, {
type: 'bar',
data: barChartData,
options: {
title: {
display:true,
text:"Figure"
},
legend: {
position: "bottom"
},
tooltips: {
mode: 'label',
bodySpacing: 10,
cornerRadius: 0,
titleMarginBottom: 15
},
scales: {
xAxes: [{
ticks: {}
}],
yAxes: [{
ticks: {
beginAtZero: true,
stepSize: 500000
}
}]
},
responsive: true
}
});
};

最佳答案

修复

在创建配置对象时将函数分配给 userCallback。这在创建刻度线时被调用。您可以在 Chart.js at the bottom of Scales Documentation 找到文档

Example fiddle with the fix

yAxes: [{
ticks: {
beginAtZero: true,
stepSize: 500000,

// Return an empty string to draw the tick line but hide the tick label
// Return `null` or `undefined` to hide the tick line entirely
userCallback: function(value, index, values) {
// Convert the number to a string and splite the string every 3 charaters from the end
value = value.toString();
value = value.split(/(?=(?:...)*$)/);

// Convert the array to a string and format the output
value = value.join('.');
return '€' + value;
}
}
}]

关于javascript - Chart.js 2.0 使用货币和千位分隔符格式化 Y 轴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36918887/

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