Apexcharts Hide 'link' Download Button May 2026
To hide the download button in ApexCharts, you can set the chart.toolbar.tools.download property to false in your configuration. This specifically removes the "hamburger" menu icon or the download options from the toolbar while keeping other tools like zoom and pan visible. Configuration Method (Standard)
Depending on your design needs, you have three primary ways to manage the export tools: apexcharts hide download button
: As shown above, setting download: false removes the export menu (SVG, PNG, CSV) but allows users to continue using zoom, panning, and reset tools. To hide the download button in ApexCharts, you
: If you only want to hide a specific format (like CSV) while keeping PNG or SVG, you can use CSS targeting. This is useful because ApexCharts does not currently have a built-in "menuItems" configuration for individual formats. CSS Solution for Specific Menu Items : If you only want to hide a
If you want to keep the button but change what the download options say, you can use the locales configuration to override the default text for "Download SVG" or "Download PNG".
var options = { chart: { toolbar: { show: true, // Keep the toolbar visible tools: { download: false // Only hide the download/export button } } }, // ... rest of your series and options }; Use code with caution. Methods to Control Toolbar Visibility
The most common way to hide the download button is by modifying the chart options in your JavaScript, React, or Vue application: javascript