printing and exporting Highcharts with logo -
i want add logo when printing , exporting highcharts only. tried exporting , works fine no hope printing. http://jsfiddle.net/andrew_safwat/zt5qlwe1/
$(function () { // create chart $('#container').highcharts({ chart: { events: { load: function () { if(this.options.chart.forexport) { this.renderer.image('http://highsoft.com/images/media/highsoft-solutions-143px.png', 80, 40, 143, 57) .add(); } } } }, series: [{ animation: false, data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4] }] }); });
any ideas please?
Comments
Post a Comment