单击 Highcharts 饼图渲染边框,尽管禁用了图例项单击
Click on Highcharts pie rendering border although legend item click is disabled
我正在显示圆环图,虽然我禁用了图例项点击时的默认设置,但它仍然在图表周围显示边框。单击图例项时发生的行为:
plotOptions: {
pie: {
borderColor: null,
point: {
events: {
// prevent click events on the legend
legendItemClick: function (e) {
return e.preventDefault();
},
},
},
},
},
你能帮忙看看如何禁用它吗?
谢谢。
更新:Fiddle link
更新:该行为不仅发生在点击图例项时,也发生在悬停时。
设置系列 states
选项可以解决您的问题。
演示:https://jsfiddle.net/BlackLabel/w7jyr2zh/
states: {
hover: {
enabled: false
},
inactive: {
enabled: false
}
}
API: https://api.highcharts.com/highcharts/series.pie.states.inactive
我正在显示圆环图,虽然我禁用了图例项点击时的默认设置,但它仍然在图表周围显示边框。单击图例项时发生的行为:
plotOptions: {
pie: {
borderColor: null,
point: {
events: {
// prevent click events on the legend
legendItemClick: function (e) {
return e.preventDefault();
},
},
},
},
},
你能帮忙看看如何禁用它吗? 谢谢。 更新:Fiddle link
更新:该行为不仅发生在点击图例项时,也发生在悬停时。
设置系列 states
选项可以解决您的问题。
演示:https://jsfiddle.net/BlackLabel/w7jyr2zh/
states: {
hover: {
enabled: false
},
inactive: {
enabled: false
}
}
API: https://api.highcharts.com/highcharts/series.pie.states.inactive