I am using Highcharts for my project. I use the following to hide the default dropdown for the export options of a chart:
$('#mycontainer").highcharts({
...
chart: {
type: 'column'
},
exporting: {
enabled: false
}
..
});
However, I do need these export options and I need to put them in my own menu together with other things. If I am right, the default export options on a single chart are basically Javascript-driven on the client side and has nothing to do with the server.
How can I rebuild these export options and put them in javascript?
UPDATE
exporting.js is already included in my page, but I want to disable the default export dropdown it generates and move the default dropdown export options into my own menu. I need to know what the default dropdown options links or javascript are so that I can make my menu work the same way the default export dropdown does.
Thanks and regards.