Learn R Programming

fusionchartsR (version 1.1.0)

fusionTooltip: 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 fusionPlot()

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

Run this code
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")

Run the code above in your browser using DataLab