0

我将 exporting.js 添加到我的项目中,但是当我检查页面时,它似乎添加了两个额外的按钮,但在我的 jsfiddle 中却没有,您知道是什么原因造成的吗?

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

在此处输入图像描述

在此处输入图像描述

这是我的 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']); 
                    }
                }
    }
4

1 回答 1

0

已修复,问题出在主题中,我只是删除了这行。

 exporting: {
        buttons: {
            exportButton: {
                symbolFill: '#55BE3B'
            },
            printButton: {
                symbolFill: '#7797BE'
            }
        }
    },
于 2013-04-22T21:09:52.043 回答