mquinlan Report post Posted April 27, 2017 (edited) This week I updated an application my company is working on to the latest release of the FusionCharts suite (v3.12.0), and the latest angular directive (v3.1.0), and we are now seeing a number of issues. Issue 1: Labels don't render on a number of chart types: "line" "scrollColumn2d" "scrollline2d" "mscolumn3d" Issue 2: Charts aren't drawing correctly. Some line charts are not rendering the lines, and some pie3d charts are rendering the pie components as transparent. Issue 3: Chart elements are rendering as black boxes when using Edge browser On our side, the data and rendering code has not changed, and we were not experiencing this issues before we updated. We were using FusionCharts suite v13.10.1 and angular directive was v3.0.0 Any insights would be appreciated, as I'm sort of scratching my head trying to figure out what's changed here, and how I can get things working again. Edited April 27, 2017 by mquinlan Original post submitted before complete Share this post Link to post Share on other sites
Ayan Bhadury Report post Posted April 28, 2017 Hi, For your first issue, we checked the charts at our end using Angular JS plugin and the labels are coming fine at our end Please check the sample fiddle for line chart - http://jsfiddle.net/cL3e6xyh/ Please check the sample fiddle for scroll column2d chart - http://jsfiddle.net/csaf0scg/ Please check the sample fiddle for scroll line chart - http://jsfiddle.net/eto51hw9/ Please check the sample fiddle for scroll line chart - http://jsfiddle.net/ucesb48j/ For your second issue, Please share us a sample fiddle link where your line charts are not getting plotted so that we can investigate it further . Regarding the transparent and black boxes problem in data plots of pie and other charts if you are using any base tag in html,set the svg definition url path to absolute to resolve the issue. As the relative path of the svg element is getting changed, as a result you are not able too see the color of the data plots. Please use below code in FusionCharts object before calling render method. FusionCharts.options.SVGDefinitionURL='absolute'; For further reference please check this sample from the given dropbox link- https://www.dropbox.com/s/lt9q3o0hylulrs1/Pie%20chart.zip?dl=0 Share this post Link to post Share on other sites