Vibin

Members
  • Content count

    2
  • Joined

  • Last visited

About Vibin

  • Rank
    Forum Newbie
  1. Thanks. But, what we require is with streamlineddata=1. Any other possibilities?
  2. Hi, I am trying to display a funnel chart using javascript. The issue is that the marking of bottom portion is rendering in flash, where as it is not displayed while using javascript. Its code is given below. FusionCharts.setCurrentRenderer('flash'); var jsonData = { "chart": { "caption": "Conversion Ratio", "subcaption": "May 2007", "showpercentvalues": "1", "decimals": "1", "basefontsize": "11", "isSliced": '1', "usesameslantangle": "1" , "streamlinedData": '1', "showBorder": '0', "bgColor": 'FFFFFF' }, "data": [ { "label": "test1", "value": "5" }, { "label": "test2", "value": "2" }, { "label": "test3", "value": "2" } ] }; var myChart = new FusionCharts( "Charts/Funnel.swf", "myChartId", "400", "300", "0", "1" ); myChart.setJSONData(jsonData); myChart.render("chartContainer"); Any idea why the above code is rendering differently for javascript and flash?