How to remove button from Highcharts

前端 未结 8 618
北荒
北荒 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:19

    exporting: {
        buttons: {
            contextButton: {
                enabled: false
            }
        }
    }
    

    You have to disable only the contextButton.

提交回复
热议问题