我正在使用Vue-chartjs,我需要将数据设置为字符串而不是数字,但是它不能像下面的代码那样接受:
fillData() {
this.datacollection = {
labels: ['orange', 'red', 'blue', 'black', 'gray', 'yellow', 'green', 'red', 'white', 'red'],
datasets: [
{
label: 'monthly mode',
borderColor: '#860052',
backgroundColor: 'transparent',
data: ['jan', 'feb', 'march', 'april', 'may', 'jun', 'jul', 'aug', 'sep', 'oct']
}
]
}
}