bb_axis: Add axis parameters

View source: R/bb_utils.R

bb_axisR Documentation

Add axis parameters

Description

Add axis parameters

Usage

bb_axis(bb, ...)

bb_x_axis(bb, ...)

bb_y_axis(bb, ...)

Arguments

bb

A billboard htmlwidget object.

...

Arguments defined in https://naver.github.io/billboard.js/demo/.

Value

A billboard htmlwidget object.

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"))


dreamRs/billboarder documentation built on Feb. 26, 2024, 1:17 p.m.