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

  1. i allowing option download images , title visible in exported images.

  2. i don't want show other default options.

  3. how configure export options used chart title images used earlier please refer fiddle.

  4. 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

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -