Disable PDF and SVG download options in Highcharts

前端 未结 3 1688
不知归路
不知归路 2021-02-15 18:36

I am using Highcharts v4.0.3 with exporting.js in my web app, and I want to be able to just provide the end user with the following download options:

  • Download Char
3条回答
  •  -上瘾入骨i
    2021-02-15 18:58

    You can remove unnecessary options the following way:

    if (Highcharts.getOptions().exporting) {
        let contextButton = Highcharts.getOptions().exporting.buttons.contextButton;
        contextButton.menuItems = contextButton.menuItems.filter((item) => {
            return item.textKey === 'downloadJPEG' || item.textKey === 'downloadPNG';
        });
    }
    

提交回复
热议问题