我想在打印菜单中添加新项目。你可以看到我的工作最低点。请帮我讲一下这个话题。
var url = chart.title.textStr.replace(/ /g, '-').toLowerCase();
var left = (screen.width/2)-(750/2);
var top = (screen.height/2)-(600/2);
return window.open('itemExport.jsp?Id='+url, 'Export', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+900+', height='+600+', top='+top+', left='+left);
答案 0 :(得分:0)
您可以使用chart.options.title.text
此标题添加到导出菜单
Fiddle演示
Highcharts.getOptions().exporting.buttons.contextButton.menuItems.push({
text: chart.options.title.text,
onclick: function() {
alert('OK');
/*call custom function here*/
}
});