Liva

Members
  • Content count

    4
  • Joined

  • Last visited

Everything posted by Liva

  1. Hello! I created zoom line chart with 33 data points but only 17 of them are displayed in chart. What could be the problem. The chart file attached. Liva 17datapoints.zip
  2. Thank you for the response! Sumedh, could you please attach the screenshot? Liva
  3. Chart Not Rendered

    Good evening! Tried to make my first chart as shown in Example in Fusion Charts Beginner's guide book, but the chart is not rendered - the browser shows text "FusionCharts will load here!" The code used is below: <html> <head> <title>My First chart using FusionCharts</title> <script type="text/javascript" src="../FusionCharts/FusionCharts.js"> </script> </head> <body> <div id="chartContainer">FusionCharts will load here!</div> <script type="text/javascript"> <!-- var myChart = new FusionCharts("../FusionCharts/Column3D.swf", "myChartId", "400", "300", "0", "1" ); myChart.setXMLUrl("Data.xml"); myChart.render("chartContainer");//--> </script> </body> </html> The data.xml file contains code: <chart caption='Harry's SuperMart' subcaption='Revenue by Year' xAxisName='Year' yAxisName='Amount' numberPrefix='$'> <set label='2009' value='1487500' /> <set label='2010' value='2100600' /> <set label='2011' value='2445400' /> </chart> First code file and the data.xml files are on the same folder. The relative pathes to the FusionCharts.js and Column3D.swf are correct. What could be wrong here? Liva
  4. Chart Not Rendered

    Hello, Sanjukta! Thank you very much for the sample - that allowed me to find mistake - I simply had to delete some symbols (bold underlined) and my chart was OK as well <!-- var myChart = new FusionCharts("../FusionCharts/Column3D.swf", "myChartId", "400", "300", "0", "1" ); myChart.setXMLUrl("Data.xml"); myChart.render("chartContainer");//--> (it was OK with paths - I just have a structure: Parent folder ---FusionCharts folder ---FirstChart folder ------data.xml ------firstchart.html) What is interesting though, that on my computer your sample is opened without blocking content (I use IE8), while the content of my sample (attached) is initially blocked and has to be allowed intentionally. I wonder why... Liva Copy of LearningFusionCharts.zip