我在饼图选项中有以下代码,以便在悬停时将鼠标光标更改为指针:
hover: {
onHover: (e, el) => {
const section = el[0];
const currentStyle = e.target.style;
currentStyle.cursor = section ? 'pointer' : 'normal';
}
}
问题
答案 0 :(得分:1)
你唯一的问题是你使用了无效的光标值,没有"正常",它应该是"默认"。
试试这个:
hover: {
onHover: (e, el) => {
const section = el[0];
const currentStyle = e.target.style;
currentStyle.cursor = section ? 'pointer' : 'default'; // <-- default here
}
}
要限制触发onHover
方法的有用功能的次数,您可以对以前的目标进行简单检查:
onHover: (() => {
let prevTarget;
return (e, el) => {
const section = el[0];
if (prevTarget !== section) {
// Code in this if-block is called only when necessary
const currentStyle = e.target.style;
currentStyle.cursor = section ? 'pointer' : 'default';
// .........
}
prevTarget = section;
}
})()
答案 1 :(得分:0)
只需将CSS样式添加到饼图数据集。
cursor: pointer;
使用此方法,您甚至不需要Javascript来设置游标属性。