View source: R/fusionTooltip.R
fusionTooltip | R Documentation |
https://www.fusioncharts.com/dev/chart-guide/chart-configurations/tool-tips
fusionTooltip(
fusionPlot,
showToolTip = TRUE,
toolTipBorderColor = "#666666",
toolTipBgColor = "#ffffff",
toolTipBgAlpha = "100",
showToolTipShadow = TRUE
)
fusionPlot |
fusionPlot object got by |
showToolTip |
Display tooltip |
toolTipBorderColor |
Specify the color of the tooltip border |
toolTipBgColor |
Specify the hex code for the tooltip background color |
toolTipBgAlpha |
Set the tooltip background color transparency |
showToolTipShadow |
Enable tooltip shadow |
library(fusionchartsR)
df <- data.frame(label = c("Venezuela", "Saudi", "Canada", "Russia"), value = c(290, 260, 180, 115))
df %>%
fusionPlot(x = "label", y = "value", type = "doughnut2d") %>%
fusionTooltip(toolTipBgColor = "#3526ad", toolTipBgAlpha = "50", showToolTipShadow = FALSE) %>%
fusionTheme(theme = "fusion")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.