...
const config = {
type: 'line', // 设置图表类型
data: data,
//隐藏标题栏属性
options: {
plugins: {
legend: {
display: false
}
}
},
};
...

...
const config = {
type: 'line', // 设置图表类型
data: data,
//隐藏标题栏属性
options: {
plugins: {
legend: {
display: false
}
}
},
};
...