DevMo

Members
  • Content count

    1
  • Joined

  • Last visited

About DevMo

  • Rank
    Forum Newbie
  1. I am unable to get a chart to display when I set the Type to SSGrid. My initial goal was to display a 3D pie chart with the grid below it. The pie chart displays, but not the grid. I simplified the code to only display the grid, but it still won't render. I then pasted my code into Fiddles, using the SSGrid type, and the grid will render. In Fiddles I can use the same data source for both Pie3d and SSGrid, and both will render properly. However, in my javascript, only the pie chart will render, not the grid. Below is some simple code I am using to test with in Fiddles. It is essentially the same in my javascript. FusionCharts.ready(function () { var revenueChart = new FusionCharts({ type: 'ssgrid', renderAt: 'chart-container', width: '500px', height: '300px', dataFormat: 'xml', dataSource: '<chart caption= "Monthly Unit Sales"><set label="Jan" value="1234" /><set label="Feb" value="4321"/></chart>' }) revenueChart.render(); }); I'm confused as to why both Pie3d and SSGrid types work in Fiddles, but only Pie3d works in my javascript.