php - Highcharts 3.0 version changes in exporting options? -
i glad highcharts has released updated 3.0 version
http://www.highcharts.com/component/content/article/2-news/54-highcharts-3-0-released
and fixed many bugs in highcharts 3.0 confused highhcharts exporting options had worked on earlier , working till last week.
this working fiddle
http://jsfiddle.net/jz9zv/
as people familiar highcharts aware of earlier exporting options .
what has happened
i allowing option download images , title visible in exported images.
i don't want show other default options.
how configure export options used chart title images used earlier please refer fiddle.
the old print button place coming undefined or time logic export chart loads in button seems buggy export chart code..
has solved or me solve questions?
thanks - appreciated :)
well please see current workaround below has got working 3.0 ?
as you'll see http://api.highcharts.com/highcharts#exporting.buttons, exportbutton , printbutton removed, , replaced generic contextbutton. can use 1 dropdown menu: http://api.highcharts.com/highcharts#exporting.buttons.
see new article @ http://docs.highcharts.com/#export-module
edit: here's updated fiddle: http://jsfiddle.net/highcharts/jz9zv/5/
exporting: { filename: 'sfasfasfa', buttons: { contextbutton: { menuitems: [{ text: 'export chart', onclick: function () { this.exportchart({}, { title: { text: 'sfasfasfa', style: { width: '450px' } } }); } }] } } }
Comments
Post a Comment