hichart note

hichart note

Note

//hichart匯出按鈕
function exportBtn() {
    var obj = {
        enabled: true,
        buttons: {            
            contextButton: {
                menuItems: ['downloadXLS', 'downloadCSV']
            }
        }
    };
    return obj;
}

//hichart匯出按鈕文字
function exportBtnText() {
    var obj = {
        downloadXLS: '下載EXCEL',
        downloadCSV: '下載CSV'
    }
    return obj;
}

 

//隱藏右下角的廣告連結        credits: {            enabled: false        },

//透過關閉Exporting的參數、隱藏內嵌右上角的HighChart功能鈕        exporting: {            enabled: false        },