remove print button

highcharts, jquery

Solution

You can disable the buttons if you like, according to the documentation. The documentation even provides an example of the chart being loaded, with the buttons disabled.

In your configuration, be sure to include the following:

var chart = new Highcharts.Chart({
    /* Other items removed to focus on navigation */
    navigation: {
        buttonOptions: {
            enabled: false
        }
    }
});

Problem

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?

Original source

Related problems