Came a cross this fiddle in the Highcharts API doc: http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/exporting/buttons-text/
printButton: {
text: 'Print',
onclick: function () {
this.print();
}
}
As you can see from hovering over "print" or "download", the tooltip is undefined.
So, my question, simply, where do I define it?
Best regards :)