I\'m creating charts with the Highcharts library and I wonder how to remove the 2 little buttons on the right corner which one you can print and download graphs and I\'d like to
The best way to do this is to update the exporting.buttons.contextButton.menuItems
array to only include the menu items you want. Below is an example that excludes the "Print Chart" and "View Full Screen" options.
exporting: {
buttons: {
contextButton: {
menuItems: ["downloadPNG", "downloadJPEG", "downloadPDF", "downloadSVG"]
}
}
}
Highcharts Example