Highcharts Disable Download Menu Upd May 2026

If your project does not require any exporting features, the cleanest approach is to simply the exporting.js module in your HTML or project imports.

exporting: { buttons: { contextButton: { menuItems: ["downloadPNG", "downloadJPEG", "downloadPDF"] // This excludes 'printChart' and other defaults } } } Use code with caution. Implementation for Specific Frameworks How to disable the context menu - Highcharts highcharts disable download menu

exporting: { buttons: { contextButton: { enabled: false } } } Use code with caution. Method 3: Remove the Exporting Module If your project does not require any exporting

Highcharts.chart('container', { exporting: { enabled: false }, // ... rest of your chart config }); Use code with caution. Method 2: Hide Only the Context Menu Button Method 3: Remove the Exporting Module Highcharts

To disable the download menu (also known as the "hamburger" or context menu) in Highcharts, you can use several methods depending on whether you want to completely disable the exporting functionality or just hide the visual button. Method 1: Completely Disable Exporting (Global Setting)