我正在尝试(努力)根据需要自定义一个ChartJS。每当我插入cutoutPercentage: 70
选项时,我都会从JSlint收到语法错误。
无论我将选项插入哪个位置,它都不起作用。如果我只插入cutoutPercentage: 70
而不插入legend and tooltip options
,则效果很好...但不能组合使用。
工作:
options:{
legend: {
display: false
},
tooltips: {
enabled: true
}
}
也可以:
options: {
cutoutPercentage: 70
}
不起作用:
options:{
legend: {
display: false
},
tooltips: {
enabled: true
}
cutoutPercentage: 70
}