0

I've tried to recreate this example: http://jsfiddle.net/6gw5P/239/

highchart() %>%  
  hc_chart(type=list('bar')) %>%
  hc_xAxis(list(categories=c('Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas'))) %>%
  hc_plotOptions(bar=list(stacking = 'normal')) %>%
  hc_series(
    list(
      name =  'John and Joe',
      data = c(5, 3, 4, 7, 2),
      stack = 'Male'
    ),
    list(
      linkedTo ='Previous',
      name = "Joe",
      data =c(2, 5, 6, 2, 1),
      stack = 'Male'
      ),
      list(
        name =  'Jane and Janet',
        data = c(2, 5, 6, 2, 1),
        stack = 'Female'
      ),
      list(
        linkedTo ='Previous',
        name = "Janet",
        data =c(3, 0, 4, 4, 3),
        stack = 'Female'
      ))

It works in the sense that there is no legend displayed for Joe and Janet but when clicking on the legends de (de)selection does not work for both. Is this not integrated yet in higcharter ?

Tim_Utrecht
  • 1,459
  • 6
  • 24
  • 44

0 Answers0