Add axis parameters
Arguments
- bb
A
billboard
htmlwidget
object.- ...
Arguments defined in https://naver.github.io/billboard.js/demo/.
Examples
stars <- data.frame(
package = c("billboarder", "ggiraph", "officer", "shinyWidgets", "visNetwork"),
stars = c(9, 178, 43, 46, 175)
)
# Add a label to y axis
billboarder() %>%
bb_barchart(data = stars) %>%
bb_axis(y = list(label = list(text = "# of stars", position = "middle")))
# or shorter :
billboarder() %>%
bb_barchart(data = stars) %>%
bb_y_axis(label = list(text = "# of stars", position = "outer-top"))