score:10

Accepted answer

You can define the items in the exporting menu with exporting.buttons.contextButton.menuItems option.

If you want to exclude only openInCloud item then you can filter out it from the default menu items.

exporting: {
  buttons: {
    contextButton: {
      menuItems: Highcharts.getOptions().exporting.buttons.contextButton.menuItems.filter(item => item !== 'openInCloud')
    }
  }
}

live example: http://jsfiddle.net/1unnkdt1/


Related Query

More Query from same tag