Venkat1269

Members
  • Content count

    7
  • Joined

  • Last visited

Everything posted by Venkat1269

  1. Line Chart Yaxisminvalue Issue

    Hi, I'm having an issue with yAxisMinValue . I want my chart to show yAxis values from 80% to 100%. But it is showing always from 0% to 100% though i have mentioned yAxisMinValue=80% in the chart xml. I'm using fusion charts 3.2.1 version. Please help me to resove the issue as it is very urgent for me. Please find the attached screen shot for your reference. Thanks in advance. Line.html
  2. Line Chart Yaxisminvalue Issue

    Hi, I think I got the problem why its not changing the yAxisMinValue. In the above chart i was using yAxisMinValue = 80 , but there are some values lower than 80%. Now my problem is , though they are some values below than 80% , but my chart should be always display yAxisValues like 80 , 85,90,95,100%. Please help me how to fix this issue.
  3. HI, I’m trying to replicate the Combination Charts . I’m able to display the chart successfully , but when I click on the legend it’s not reflecting the same. One thing what I observed on my graph is, it’s not giving the option to click on the legend. Some link in the xml is missing . But the same xml is working fine in the example. I have attached my code . Could you please validate and let me know what is missing in the xml that it’s not working as expected. Please follow the below url for your reference to see actual graph. http://www.fusioncharts.com/demos/gallery/#combination-dual-y CoulmnY.html
  4. Combination Charts (Dual Y)

    Hi, After updating to FusionCharts 3.2.2 version , its working fine. I will upgarde my product to latest version. Actually i have one doubt about FusionChart.js file is it same in FusionCharts and FusionWidgets ?
  5. Combination Charts (Dual Y)

    Hi Sumedh, Legend part is not working for any of the example i have tried. I'm not sure how its working with you. Could you please send me your project , may be your project might have additional code which is missing in my case. On click of "Revenue" and "Quantity" related data should disappear / appear in the graph is not happing. Thanks in advance.
  6. Hi, I'm new to Fusion charts. I got one requirement to genarate Gantt fusion chart on the JSP by using FusionChart.js. I have created JSP and copied Gantt.swf and FusionCharts.js file in web-inf directory. Please find the attached xmlData file for the xml data. This is example chart i found in the fusion web site. When i run this program its not displaying the chart. Could you please let me know what is wrong wit my code and also let me know how can i generate sucessfully Gantt chart by using the attached xmlData. Thanks in Advance. JSP File :- <html> <head> <head> <title>Example Graph</title> <SCRIPT lang="Javascript" src="FusionCharts/FusionCharts.js"></SCRIPT> </head> <% String xmlData = ""; %> <body> <%if(xmlData != null && xmlData.length() > 0) {%> <table width="98%" align="center" cellpadding="2" cellspacing="0"> <tr> <td align="center"> <div id="chartdiv" align="center">Milestone Chart</div> <script type="text/javascript"> var myChart = new FusionCharts("FusionCharts/Gantt.swf", "milestoneChart", "800", "600", "0", "0"); myChart.setDataXML("<%=xmlData%>"); myChart.render("chartdiv"); </script> </td> </tr> </table> <%}%> <br> <!-- BEGIN messages --> </body> </html> xmlData.txt