Is it possible to add hover text to an ly_text()
layer in rbokeh? For example, how can I add hover text to the numbers drawn in this figure?
d = data.frame(x=1:5, y=1:5, text=as.character(1:5))
figure() %>% ly_text(x, y, text, data=d)
Thanks!
Is it possible to add hover text to an ly_text()
layer in rbokeh? For example, how can I add hover text to the numbers drawn in this figure?
d = data.frame(x=1:5, y=1:5, text=as.character(1:5))
figure() %>% ly_text(x, y, text, data=d)
Thanks!