如何在高卡车中找到标题

时间:2017-05-01 17:44:07

标签: javascript printing highcharts menu

我想在打印菜单中添加新项目。你可以看到我的工作最低点。请帮我讲一下这个话题。

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);

1 个答案:

答案 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*/
      }
   });