Creating a Donut Chart in R using Highcharts
I am trying to create a donut chart with some interactive-ness in R. I have achieved a pie chart like below: highchart() %>% hc_add_series(type = "pie", data = age, hcaes(Age, Mean_percentage_viewed), size = "60%", name = "Mean Percentage viewed", center = c(50, 50), dataLabels = list(distance = -50, formatter = JS("function () { return this.y… Read More Creating a Donut Chart in R using Highcharts