Arindam

Members
  • Content count

    730
  • Joined

  • Last visited

Everything posted by Arindam

  1. Hi, Could you please use link attribute with in set? Could you please modify your data.xml? <set x='59' y='15' width='40' height='56' name='Node 2' color='FE9191' id='2' link='a.html' /> Also note that your render chart script is not correct. Please follow this script <div id="chartdiv" align="center"> FusionCharts. </div> <script type="text/javascript"> var chart = new FusionCharts("DragNode.swf", "NodeChart", "580", "350", "0", "1"); chart.setDataURL("Data.xml"); chart.render("chartdiv"); </script>
  2. How to set the FPS(Frames per Second) property.

    Hi, Could you please visit this link and try to use scale mode exactFit? http://www.fusioncharts.com/docs/Contents/PercentResize.html Please Note That: FusionCharts v3 allows you to resize charts in percentage too (apart from pixels). However, this method is not recommended as this method just scales the chart and doesn't redraw the chart as per the given size Could you please use pixels, instead of percentage. Also, FPS doesn't affect rendering - it just affects CPU usage.
  3. Problem while rendering Chart

    Hi, Could you please visit this link and try to use scale mode exactFit? http://www.fusioncharts.com/docs/Contents/PercentResize.html Please Note That: FusionCharts v3 allows you to resize charts in percentage too (apart from pixels). However, this method is not recommended as this method just scales the chart and doesn't redraw the chart as per the given size Could you please use pixels, instead of percentage. Also, FPS doesn't affect rendering - it just affects CPU usage.
  4. Hi, Could you please use link attribute with in set? Could you please modify your data.xml? <set x='59' y='15' width='40' height='56' name='Node 2' color='FE9191' id='2' link='a.html' /> Also note that your render chart script is not correct. Please follow this script <div id="chartdiv" align="center"> FusionCharts. </div> <script type="text/javascript"> var chart = new FusionCharts("DragNode.swf", "NodeChart", "580", "350", "0", "1"); chart.setDataURL("Data.xml"); chart.render("chartdiv"); </script>
  5. XY line graph?

    Hi, I am afraid we have no xy line chart but we have Scatter (XY Plot) Chart. Could You please follow this chart and visit this link? http://www.fusioncharts.com/docs/Contents/ChartSS/Scatter.html
  6. Hi, I am afraid it is not possible as of now. Thank for your suggestion. We would look forward to this for our next major release.
  7. Turning of the legend in an 2D Area Chart

    Hi, I am afraid single series FusionCharts not supports legend. You can try with Grid Component. Could you please visit this link bellow? http://www.fusioncharts.com/docs/Contents/Grid_Usage.html
  8. DrillDown in Frame Problem

    Hi, Could you please provide your source code and follow this link? http://www.fusioncharts.com/docs/Contents/DrillDown/Frames.html
  9. Hi, Could you please visit this link? http://www.fusioncharts.com/docs/Contents/CS_BasicExample.html
  10. Hi, Could you please add Literal control on design page above the button after try this code? on .aspx page <%-- <%=GetQuarterlySummaryChartHtml()%> --%><?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> <asp:Literal ID="Literal1" runat="server"></asp:Literal> <br /> <asp:Button ID="Button1" runat="server" OnClick="Button1_Click1" Text="Button" /> on .aspx.cs Page: Change Button1_Click1 code to protected void Button1_Click1(object sender, EventArgs e){ Literal1.Text = GetQuarterlySummaryChartHtml(); } If you want that chart will show on page load then please add this code to page_load event Literal1.Text = GetQuarterlySummaryChartHtml();
  11. Attnedance

    Hi, I am afraid it is not possible in V3 line Charts as of now. Also not possible in both axis.
  12. Attnedance

    Hi, I am afraid it is not possible in V3 line Charts as of now.
  13. Attnedance

    Hi, Could you please provide us source code or you can follow this link? Color attribute of set element will help you to change column color. i.e <set label="Jan" value="100" color="00FF00" /> http://www.fusioncharts.com/docs/Contents/PHP_Array.html
  14. Hi, I am afraid single series FusionCharts not supports legend. You can try with Grid Component. Could you please visit this link bellow? http://www.fusioncharts.com/docs/Contents/Grid_Usage.html
  15. Fusion maps - automatic refresh?

    Hi, Could you please try with this code? <div id="map1div"> FusionMaps. </div> <script type="text/javascript"> //FusionMaps.js must be include //Register With JS must of set ON ("1") [ RED BELOW] to access the map when updating var map1 = new FusionMaps("../Maps/FCMap_Colorado.swf", "Map1Id", "300", "187", "0", "1" ); map1.setDataURL("colo2008.xml" ); map1.setTransparent(true); map1.render("map1div" ); //Attempt to get the refresh working: window.setInterval(function() { mapr('Map1Id'); }, 5000); function mapr(mapId) { var umap=getMapFromId(mapId); umap.setDataURL("colo2008.xml" ); } </script>
  16. Hi Scroll Stacked Column 2D Chart is a multi series chart. Please see the above link again.
  17. Hi, You have to replace swf files and FusionCharts.js file.
  18. Drill down chart display style.

    Hi, yes it is possible. Could you please see our blue print application?
  19. Hi, Could you please send us full source code?
  20. Hi, Could you please try with JavaScript drill down? please visit this link. http://www.fusioncharts.com/docs/Contents/JS_Example.html http://www.fusioncharts.com/docs/Contents/DrillDown/JavaScript.html
  21. Hi, Could you please try with this FusionCharts_Gen.php file? FusionCharts_Gen.zip
  22. Fusion maps - automatic refresh?

    Hi, Could you please tell what type of server script technologies are you using (asp, php, aspx etc). you can use javascript timer for automatic refresh.
  23. Hi, Multi-series Stacked Column 2D not support scroll, but Scroll Stacked Column 2D Chart is fully support scroll. File name is ScrollStackedColumn2D.swf Could you please visit this link? http://www.fusioncharts.com/docs/Contents/ChartSS/ScrollStackedCol2D.html
  24. Fixed Label width

    Hi, I am afraid it is not possible as of now. You have to do this by manually. <category label='Apple...' >
  25. Trendline Value on more than one line

    Hi, Could you please use style for this supports? if you are useing dataXML: <trendLines> <line startvalue='24' displayValue='Primary%26lt;BR%26gt;NAAQS%26lt;BR%26gt;Standard' color='FF0000' thickness='1' isTrendZone='0' /> </trendLines> <styles> <definition> <style name='myHTMLFont' type='font' isHTML='1' /> </definition> <application> <apply toObject='TRENDVALUES' styles='myHTMLFont' /> </application> </styles> if you are useing DataURL: <line startvalue='24' displayValue='Primary<BR>NAAQS<BR>Standard' color='FF0000' thickness='1' isTrendZone='0' /> Note: %26lt;BR%26gt; , <BR> here BR must be upper case