rvats

Members
  • Content count

    20
  • Joined

  • Last visited

Everything posted by rvats

  1. Fusion Charts With Env.js And Rhino

    HI, have there been any updates on this issue? We are looking for a solution to exports charts at the server side (without rendering them). Is there a way to do this with FusionCharts XT? Thanks, Rohit
  2. Hi, When using JavaScript renderer, a pie chart with "0" values has rendering issues in 3.2.2 SR5, while it worked fine in SR3. Here's the XML data for testing: <chart ><set label='abc' value='0.0' /><set label='2-2' value='1.0' /><set label='3-3' value='1.0' /></chart> Screenshots are attached describing the issue.
  3. We recently upgraded to FusionCharts XT(v3.2.2) SR5 from SR3, and the resizeTo method on the charts doesn't seem to work anymore when using JavaScript renderer. It works fine when using Flash charts. I did some debugging and found that the resize method in FusionCharts.HC.js does not do anything because of the following check: if (!(container && container.resize)) { return; } The *container* is empty, but not sure why. This was definitely working in SR3. Thanks, Rohit
  4. This issue has now been resolved, I was calling setXMLData() after resizeTo() (which used to work in SR3), now I've just moved the resize call after setXMLData() which fixes this issue.
  5. After upgrading to SR3 for Fusion Charts XT, we are facing issues when calling getSVG() twice on a chart object: First issue: First call: this.jsVars.hcObj.getSVG() (returns the SVG string correctly) Second call on the same chart: this.jsVars.hcObj.getSVG() (throws a javascript error in the console) This happens because of the call to chartCopy.destroy() in the getSVG() method: // get the SVG from the container's innerHTML svg = chartCopy.container.innerHTML; // free up memory options = null; chartCopy.destroy(); (THIS CALL CAUSES THE ISSUE) discardElement(sandbox); Commenting out that call fixes the issue for now, but we would like the memory to be recollected ideally. Second issue: The getSVG() method returns the visibility property incorrectly: In Chrome, the SVG string has: visibility="" which is incorrect since the property cannot be blank (fixed by: .replace(/visibility=""/g, '')) In IE, the SVG string has just prop1="val1" visibility prop2="val2", which is incorrect syntax (fixed by: .replace(/ visibility /g, ' '))
  6. Noticed this in SR3 of Fusion Charts XT Error is: Cannot read property 'pieYScale' of undefined Method: spaceManager Code: pieYScale = series.pieYScale series is null, which needs to be handled in other places as well. It is disappointing to see errors like this in a production release.
  7. Chart Performance Issue In Ie

    We are also facing performance issues in IE on charts which have lots of points. We are using Fusion Charts XT with the latest patch release. Is this something that is being looked into for the next release?
  8. Batch Export.

    We are facing a similar issue: This only started happening after upgrading to FusionCharts XT (we are on SR3). On IE8, if there are charts which are not in the viewable area, batch export process takes a very long time (in minutes) to call back FC_ExportReady . The export works after that with the following behaviour: 1) If I scroll down and then back, and then export, the export works correctly 2) If I don't scroll at all, and then export, the export works, but there are labels missing from the exported charts. Is there a possible fix for this issue. This seems to work fine on Chrome.
  9. Hi, The issue is described in the title of the post: "Empty Javasciript Pie Charts Throw Javascript Error" If you try and render an empty javascript pie chart, a javascript error is thrown, and the message "No data to display" is not displayed. Instead, and empty chart is displayed. This does not happen on flash charts. Below is the XML generated in our application, but you can reproduce the issue using <chart></chart>: <chart bgColor='DDDDDD,FFFFFF' bgAlpha='100' useRoundEdges='1' palette='1' showLegend='1' legendPosition='BOTTOM' exportEnabled='1' exportShowMenuItem='0' exportHandler='fcExporter' animation='1' exportAtClient='1' unescapeLinks='0'></chart>
  10. Hi, We are facing a strange IE bug in JS pie charts. If a pie chart only has a single point (single <set> element), then in IE 8, only half the pie is rendered. I haven't tested this on any other IE version, but this works fine on Chrome and Firefox. Attached is a screenshot. The zip file contains files to reproduce the issue. Open "test.html" in IE8 and then select "Pie 2D" from the dropdown. We are using the latest version of FC (v3.2.2). Please help! HalfPie_IE8_TestCase.zip
  11. In a stacked 3d column chart, if there is a set with value as 0, then it gets displayed (out of proportion) when JavaScript rendering is used, but it does not get displayed at all in Flash charts (the correct behaviour). Here's the xml to reproduce this issue (see screenshots as well): <chart bgColor='DDDDDD,FFFFFF' bgAlpha='100' useRoundEdges='1' caption='A & B' palette='1' showLegend='1' legendPosition='BOTTOM' labelDisplay='Stagger' staggerLines='2' showValues='0' animation='1' unescapeLinks='0'><categories><category label='Action'/><category label='1'/></categories><dataset seriesName = '> 2sd [asasd]' renderAs = 'Column' ><set value='0.0'/><set value=''/></dataset><dataset seriesName = '< 1 [as]' renderAs = 'Column' ><set value='28.0'/><set value=''/></dataset><dataset seriesName = '3' renderAs = 'Column' ><set value=''/><set value='28.0'/></dataset></chart> Is there a quick fix for this? Thanks, Rohit
  12. Thanks! The issue is now fixed the by the latest release.
  13. Thanks! The issue is now fixed the by the latest release.
  14. Pie Chart: Labels Are Cut Off

    Is this property only supported when using "Flash" rendering? It does not seem to work when JavaScript rendering is used.
  15. Hi, I tried the latest service release, but it does not fix the issue. Could you please confirm this as a bug? This is stopping us from using Fusion Charts XT in production.
  16. We are using v3.2.2: /** * The version of FusionCharts.js */ version: [3, 2, 2, 'release', 3880]
  17. Hi, Any updates on this issue? Is this a bug in fusion charts?
  18. Thanks, but I still get the same issue with the new JS files. Note that the issue also happens for Doughnut charts.
  19. Hi Angshu, Do you know when this feature will be available? -Rohit