Highcharts:Exporting.js添加两个额外的按钮

时间:2013-04-22 16:36:23

标签: javascript highcharts

我将exports.js添加到我的项目中,但是当我检查页面时,它似乎添加了两个额外的按钮,但在我的jsfiddle中却没有,你知道是什么导致这个吗?

这是我的图表图表,你能看到有两个按钮:

enter image description here

enter image description here

这是我的jsfiddle: http://jsfiddle.net/pLDeq/10/

exporting: {
            enabled: true,
            exportButton: {
                enabled: true
            },
            buttons: 
            {
                customButton:
                {
                    //x: 20,
                     symbol: 'url(http://cdn1.iconfinder.com/data/icons/fatcow/16/chart_bar.png)',
                    onclick: function() {
                        setChartColumn([name,name2], categories, [data,data2], ['column','column']); 
                    }
                }
    }

1 个答案:

答案 0 :(得分:0)

修正了问题出现在主题中,我只是删除了这一行。

 exporting: {
        buttons: {
            exportButton: {
                symbolFill: '#55BE3B'
            },
            printButton: {
                symbolFill: '#7797BE'
            }
        }
    },