我在R Shiny应用程序中有一个plotlyOutput热图,我通过heatmaply渲染它。当我将鼠标悬停在热图上时,会弹出一条消息
plotlyOutput
heatmaply
Row - [rowname] Column - [columnname] Value - xxxxx
我该如何将其定制为一个自定义字符串呢?
yzuktlbb1#
我们可以通过style()覆盖默认的悬停模板:
style()
library(heatmaply) library(datasets) heatmaply(mtcars) |> style(hovertemplate = paste0("X: %{x}<extra></extra>"))
1条答案
按热度按时间yzuktlbb1#
我们可以通过
style()
覆盖默认的悬停模板: