How to remove button from Highcharts

前端 未结 8 655
北荒
北荒 2021-02-02 04:42

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

8条回答
  •  暖寄归人
    2021-02-02 05:16

    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

提交回复
热议问题