gpt4 book ai didi

jquery - 图表 js : How to change value for Y Axis?

转载 作者:行者123 更新时间:2023-12-05 09:19:50 27 4
gpt4 key购买 nike

adding temperature to the y axis

如何在 Chart.js v2 中将 °C 添加到 Y 轴?这些值由 Chart.js 库自动生成。

这是我的代码:

        var chartInstance = new Chart(ctx, {
type: 'bar',
data: data,
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero:false
},
scaleLabel: {
display: true,
labelString: 'Temperature'
}
}]
},

title: {
display: true,
text: 'Weather Graph'
}

}

最佳答案

要更改图表上的 y 轴标签,您可以添加:

...
yAxes: [{
ticks: {
beginAtZero:false
},
scaleLabel: {
display: true,
labelString: 'Temperature'
},
afterTickToLabelConversion : function(q){
for(var tick in q.ticks){
q.ticks[tick] += '\u00B0C';
}
}
}]
...

在此函数中,afterTickToLabelConversion,您可以更改 chart.js 中 y 轴上的标签。它们被称为滴答声:http://codepen.io/anon/pen/NRAzmN

关于jquery - 图表 js : How to change value for Y Axis?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39507188/

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