Interactive charts with tui-chart library. Currently support is minimal since there’s a lot of htmlwidgets for creating charts.
Bars / columns
Treemap
Gauge
chart(list(Speed = 80), type = "gauge", height = "500px") %>%
chart_options(
circularAxis = list(scale = list(min = 0, max = 90), title = "km/h"),
series = list(angleRange = list(start = 225, end = 135)),
plot = list(
bands = list(
list(range = c(0, 20), color = "#55bf3b"),
list(range = c(20, 50), color = "#dddf0d"),
list(range = c(50, 90), color = "#df5353")
)
),
theme = list(plot = list(bands = list(barWidth = 40)))
)