I am using MVC and currently working with highchart
I am using the Exporting.js so users can print or export the highchart chart. I have two charts in a view and I would
The first option that you mention:
exporting: {
enabled: false
}
breaks the highcharts object, if you are using it in a scenario in which you reuse the html container (ie refreshing data).
the only viable option for me in that scenario is combining both:
optionsMini.exporting = {
enabled: false,
buttons: {
exportButton: {
enabled: false
},
printButton: {
enabled: false
}
}
}