SolKlein Report post Posted October 17, 2010 I have a problem with how labels show on the javascript (highchart) pie2D chart. I'm attaching a screen shot of a flash version and javascript version of the same chart. Same XML data use for both charts. How can I get the labels to show like the flash version? The labels in the javascript chart are mostly unreadable the way they render. Thanks! Share this post Link to post Share on other sites
Guest Basundhara Ghosal Report post Posted October 18, 2010 Hi, I'm running the latest version 3.2.1 and am having an issue with labels on the 2D Pie charts. The flash version render correctly and the JavaScript (HighCharts) versionrenders differently. Making the labels unreadable/unusable. I'm attaching screenshots of both. Both are fed from the same XML data. Any thoughts on how to change the JS output to match the Flash version? This is a known issue of JavaScript charts. There is a workaround that allows you to specifically adjust your JS charts to suit your needs and bridge differences between the flash charts. For every flash chart, there is an internal method called _overrideJSChartConfiguration that accepts HighCharts configuration as parameter. This configuration overrides the default configuration of the JS charts. The sample code is as below: if (typeof chartObject._overrideJSChartConfiguration === 'function') { chartObject._overrideJSChartConfiguration({ // provide highcharts configuration here... }); } For the HighCharts configuration reference, please check the link mentioned below :- Ref: http://www.highcharts.com/ref/ I hope this helps. Share this post Link to post Share on other sites