fusionTooltip {fusionchartsR} | R Documentation |
Adding FusionCharts tooltip
Description
https://www.fusioncharts.com/dev/chart-guide/chart-configurations/tool-tips
Usage
fusionTooltip(
fusionPlot,
showToolTip = TRUE,
toolTipBorderColor = "#666666",
toolTipBgColor = "#ffffff",
toolTipBgAlpha = "100",
showToolTipShadow = TRUE
)
Arguments
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 |
Examples
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")
[Package fusionchartsR version 0.0.3 Index]