Am I missing something? I am trying to render a plot that when I click on the zipcodes it produces a hchart plot to the side. The problem is the leaflet plot only gives the map but no data however the legend shows the colors. It worked once when I mistakenly rendered it in the side bar but when I try to render it in a row of the body it gives this issue.
metro <- reactive({
m <- ds_map %>% filter(STATE == input$metro_name)
return(m)
})
Hi @sl4269! It's been a couple of years and I'm hoping you've figured out the answer to your problem in the mean time. If not, feel free to reply with a reprex and we'll be happy to take another look.
Am I missing something? I am trying to render a plot that when I click on the zipcodes it produces a hchart plot to the side. The problem is the leaflet plot only gives the map but no data however the legend shows the colors. It worked once when I mistakenly rendered it in the side bar but when I try to render it in a row of the body it gives this issue.
Row