dreamRs / billboarder

:bar_chart: R Htmlwidget for billboard.js
https://dreamrs.github.io/billboarder/
Other
174 stars 21 forks source link

bb_gauge complete circle #7

Closed uttam-1996 closed 5 years ago

uttam-1996 commented 5 years ago

can you help me out how can i get a complete circle gauge chart ?

`billboarder()%>% bb_gaugechart(num) Rplot

but i want a full circle gauge chart `

pvictor commented 5 years ago

Hi,

You can use :

library(billboarder)
billboarder()%>%
  bb_gaugechart(57) %>% 
  bb_gauge(fullCircle = TRUE)

You can find JavaScript examples here https://naver.github.io/billboard.js/demo/#GaugeChartOptions.GaugeFullCircle to adapt to your R code.

This is also possible in the last release with :

bauge(value = 57, full_circle = TRUE)

Victor

uttam-1996 commented 5 years ago

Thank you :+1: