是否可以使用Chart.JS在折线图的y轴上显示文本而不是数值?
假设我们有以下文字到值mapping
。
0 = "sedentary"
1 = "under-active"
2 = "active"
....
我们如何才能显示“久坐不动”,“#34;不活跃"等”,而不是下图中的数值:
答案 0 :(得分:2)
是的,有可能,您可以使用 set @gender = (table_name.gender_column);
select * from table_name
where find_in_set(table_name.gender_column, @gender);
函数来实现y轴刻度。
userCallback

var mapText = ['sedentary', 'under-active', 'active', 'inactive'];
var chart = new Chart(canvas, {
type: 'line',
data: {
labels: ['January', 'February', 'March', 'April'],
datasets: [{
label: 'Statistics',
data: [3, 1, 2, 0],
backgroundColor: 'rgba(0, 119, 204, 0.1)',
borderColor: 'rgba(0, 119, 204, 0.8)',
borderWidth: 1,
}]
},
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero: true,
maxTicksLimit: 4, //set as the 'mapText' array length
stepSize: 1,
userCallback: function(t, i) {
return mapText[mapText.length - (i + 1)];
}
}
}]
}
}
});