Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove button from Highcharts

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 add a new one.

Maybe someone could help me?

like image 371
tomzi Avatar asked Mar 13 '12 14:03

tomzi


People also ask

How do I remove a credit from Highcharts?

It's said here that you should be able to add the following to your chart config: credits: { enabled: false }, that will remove the "Highcharts.com" text from the bottom of the chart.

How do I hide the Highchart watermark?

How do I remove a Highchart watermark? highcharts Credits Removing "highcharts.com" Logo Highchart by default puts a credits label in the lower right corner of the chart. This can be removed using credits option in your chart settings. will remove the highcharts.com logo.

Can Highcharts be used in server?

The application can be used either as a CLI (Command Line Interface), as an HTTP server, or as a node. js module.

Is Highcharts a library?

The Highcharts library comes with all the tools you need to create reliable and secure data visualizations. Built on JavaScript and TypeScript, all our charting libraries work with any back-end database or server stack.


1 Answers

Try adding exporting: { enabled: false } to your chart generation.

like image 136
dgw Avatar answered Oct 11 '22 13:10

dgw