默认情况下,当鼠标悬停时,图形光标变为“指针”,任何想法如何保持正常光标?
答案 0 :(得分:3)
一个hacky解决方案,但您可以使用htmlwidgets
和Javascript自己指定光标。
通过d3.select
,我们获得了使用cursor-crosshair
类的所有元素,并将光标设置覆盖为默认值,因此所有其他游标都不受影响,例如:轴的调整大小光标。
library(plotly)
library(htmlwidgets)
plot_ly(type='bar',
x = c(1, 2),
y = c(3, 5)) %>% onRender("
function(el, x) {
Plotly.d3.select('.cursor-crosshair').style('cursor', 'default')
}
")