user2289665
user2289665

Reputation: 1

High Charts export to PDF

I am using the high charts.And these all have the buttons for export to .PDF on each chart.i want to a another button apart from these buttons.When I click on this button, it export all the high chart in single PDF file. And my whole code in c#

Upvotes: 0

Views: 2103

Answers (1)

Sebastian Bochan
Sebastian Bochan

Reputation: 37588

You can add override button by prepare your own buttons by exporting / buttons parameter

http://jsfiddle.net/fXHB5/8617/

 exporting:{
    buttons:[{
        enabled:true,
        align:'right',
        symbol:'triangle',
        onclick:function(){
           alert('aaa');
        }
    }]
},

http://api.highcharts.com/highcharts#exporting.buttons

Upvotes: 1

Related Questions