I'd like to use a custom printing button for my Highcharts graph. Now, I succeeded in adding it, however, I don't know how to make it display those default printing options (Export as PNG, SVG, JPG, PDF). And how to make disappear that default printing button.
This is the code:
exporting: {
buttons: {
'myButton': {
_id: 'myButton',
symbol: 'url(http://geodev.grid.unep.ch/images/button_download.png)',
onclick: function () {
alert('click!')
}
}
}
}
And here is a fiddle.
Is there any simple approach for that in the "onClick" event it says: "Display all print options"?
Thanks for any suggestions!