rshinyr-highcharter

How to get the color code of a selected slice?


I'm trying to develop a part of a shiny app that makes an interactive visualization between a pie chart and a world map. So I want the users to click on the pie chart and then I can get the selected slice and the color code of the corresponding slice. I'm able to take the the slice that has been selected by the following code:

library(shiny)
library(highcharter)

ui <- fluidPage(
    column(3,
           highchartOutput("hcontainer",height = "300px")
    ),
    column(3,
           textOutput("clicked")
    )
)

server <- function(input, output){

    click_js <- JS("function(event) {Shiny.onInputChange('pieclick',event.point.name);}")

    output$hcontainer <- renderHighchart({
        highchart() %>% 
            hc_chart(type = "pie") %>% 
            hc_add_series(data = list(
                list(y = 3, name = "cat 1"),
                list(y = 4, name = "dog 11"),
                list(y = 6, name = "cow 55"))) %>% 
            hc_plotOptions(series = list(events = list(click = click_js)))
    })

    output$clicked <- renderText({
        input$pieclick
    })

}

shinyApp(ui, server)

But I can't see any way on how I can get the corresponding color of the selected slice.

A possible solution for that is if I can get a vector of all the slice and a vector of all the corresponding color-codes then I can make a comparison between the value I got from the selection and the colors of each value. I also couldn't find a way to get all the values and color-codes used automatically in the pie chart generation.


Solution


  • library(shiny)
    library(plotrix)
    library(highcharter)
    
    ui <- fluidPage(
      column(3,
             highchartOutput("hcontainer",height = "300px")
      ),
      column(3,
             textOutput("clicked")
      )
    )
    
    server <- function(input, output){
      
      click_js <- JS("function(event) {Shiny.onInputChange('pieclick',[event.point.name,event.point.color]);}")
      
      output$hcontainer <- renderHighchart({
        highchart() %>% 
          hc_chart(type = "pie") %>% 
          hc_add_series(data = list(
            list(y = 3, name = "cat 1"),
            list(y = 4, name = "dog 11"),
            list(y = 6, name = "cow 55"))) %>% 
            hc_plotOptions(series = list(events = list(click = click_js)))
      })
      
      output$clicked <- renderText({
        req(input$pieclick)
        d <- input$pieclick
        mycolor <- gsub("[[:digit:]]", "", color.id(d[2])[1])
        paste0(d[1],"-",mycolor)
      })
      
    }
    
    shinyApp(ui, server)
    

    enter image description here