我在格式化圖表軸時遇到了問題,而我無法找到更新版本2.0的示例。Chart.js 2.0使用貨幣和千位分隔符格式化Y軸
我怎麼能(例如)2000000到€2,000.000?
我的小提琴: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
}
});
};
非常感謝@L Bahr!我忽略了這個功能。您的代碼添加了一個。負數之前。 (例如-500000變成-.500.000>所以我用替換替換了拆分,這裏有一個新的小提琴https://jsfiddle.net/Hiuxing/4sLxyfya/8/ – Mae
完美!把它放到正確的路徑讓它工作正常爲了我自己 – vanhornRF