Reputation: 1
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
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