RedJungle

Members
  • Content count

    2
  • Joined

  • Last visited

Everything posted by RedJungle

  1. Swf Always Requests Data.xml

    As a followup to this, if you don't use compact rendering the problem doesn't occur. So this behaves correctly: var myDoughnutChart = new FusionCharts("Doughnut3D.swf", "MyChart", "100%", "400", "0", "1"); myDoughnutChart .setJSONUrl("/GetJson"); myDoughnutChart .render("MyChartDiv"); This does not: var myDoughnutChart = FusionCharts.render("Doughnut3D.swf", "MyChart", "100%", "400", "MyChartDiv", "/GetJson", "jsonurl");
  2. Swf Always Requests Data.xml

    I've also encountered this issue and its causing us issues now too. Steps to reproduce: 1). Use the jsonurl in your chart.. our code looks like this: var myDoughnutChart = FusionCharts.render("Doughnut3D.swf", "MyChart", "100%", "400", "MyChartDiv", "/GetJson", "jsonurl"); 2). Return a valid json result. 3). The chart displays correctly. 4). It appears the chart will then request Data.xml (which is unexpected/wanted behavior). Any advice on how to solve this issue would be greatly received.