fusionCaption {fusionchartsR} | R Documentation |
Adding FusionCharts caption
Description
https://www.fusioncharts.com/dev/chart-guide/chart-configurations/caption-and-sub-caption
Usage
fusionCaption(
fusionPlot,
caption = "Add a caption here",
captionFont = "Arial",
captionFontSize = "18",
captionFontColor = "#5A5A5A",
captionFontBold = TRUE,
captionOnTop = TRUE,
captionAlignment = c("center", "left", "right")
)
Arguments
fusionPlot |
fusionPlot object got by |
caption |
Specify the caption of the chart |
captionFont |
Set the caption font family |
captionFontSize |
Set the caption font size (between 0 and 72) |
captionFontColor |
Set the caption font color |
captionFontBold |
Enable caption font to bold |
captionOnTop |
Display the caption at the top of the chart |
captionAlignment |
Specify the horizontal alignment of the caption |
Examples
library(fusionchartsR)
df <- data.frame(label = c("Venezuela", "Saudi", "Canada", "Russia"), value = c(290, 260,180, 115))
fusionPlot(data = df, x = "label", y = "value", type = "column2d") %>%
fusionCaption(caption = "Caption on the left", captionAlignment = "left") %>%
fusionSubcaption(subcaption = "subcaption too") %>%
fusionTheme(theme = "fusion")
[Package fusionchartsR version 0.0.3 Index]