2017-05-07 11 views
1

1ページに10のグラフィックスがあります。これらのページのデータを新しいページに表示したいと思います。export-csv.jsを挿入しました。私は追加しました。印刷メニューの新しいリンク

$(function() { Highcharts.chart('gool', { chart: { zoomType: 'xy' }, title: { id: '101', text: 'Soccer Gool'

`Highcharts.Chart.prototype.downloadItem =機能(){

var url = this.title.textStr.replace(/ /g, '-').toLowerCase(); 
    var url = this.title.id; 

    var left = (screen.width/2)-(750/2); 
    var top = (screen.height/2)-(600/2); 
    return window.open('itemExport.jsp?Id='+url+asd, '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); 

}; 

// Add "Download CSV" to the exporting menu. Use download attribute if supported, else 
// run a simple PHP script that returns a file. The source code for the PHP script can be viewed at 
// https://raw.github.com/highslide-software/highcharts.com/master/studies/csv-export/csv.php 
if (Highcharts.getOptions().exporting) { 
    Highcharts.getOptions().exporting.buttons.contextButton.menuItems.push({ 
     textKey: 'downloadCSV', 
     onclick: function() { this.downloadCSV(); } 
    }, { 
     textKey: 'downloadXLS', 
     onclick: function() { this.downloadXLS(); } 
    },{ 
     textKey: 'downloadItem', 
     onclick: function() { this.downloadItem(); } 
    }); 
} 

` 私は、コードが動作するために私が何をすべきIDのvariable.Whatを得ることができませんか?

答えて

0

要素のカスタムプロパティを使用する場合は、chart.optionsでアクセスします。あなたの場合はthis.options.title.idになります。

+0

ありがとうございます:) –

関連する問題