Arindam
Members-
Content count
730 -
Joined
-
Last visited
Everything posted by Arindam
-
How to implement Hyperlink in powerchart (set tags)
Arindam replied to mind_mirror's topic in FusionCharts and JSP
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> -
How to set the FPS(Frames per Second) property.
Arindam replied to Suresh Kumar G's topic in Miscellaneous
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. -
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.
-
How to implement Hyperlink in powerchart (set tags)
Arindam replied to mind_mirror's topic in FusionCharts and JSP
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> -
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
-
Click on the legend for hides the line or column
Arindam replied to Arindam's topic in Suggestions & Requests
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. -
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
-
Hi, Could you please provide your source code and follow this link? http://www.fusioncharts.com/docs/Contents/DrillDown/Frames.html
-
setTransparent with InfoSoftGlobal dll
Arindam replied to garnold's topic in FusionCharts and ASP.NET
Hi, Could you please visit this link? http://www.fusioncharts.com/docs/Contents/CS_BasicExample.html -
My ASP page does not display FusionChart
Arindam replied to maks's topic in FusionCharts and ASP.NET
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(); -
Hi, I am afraid it is not possible in V3 line Charts as of now. Also not possible in both axis.
-
Hi, I am afraid it is not possible in V3 line Charts as of now.
-
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
-
is it possible to add legend for basic 2D column chart(javascript)
Arindam replied to anishtomas's topic in FusionCharts and JSP
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 -
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>
-
Does Multi-series Stacked Column 2D chart has scroll pane function?
Arindam replied to zhxcookie's topic in FusionCharts and PHP
Hi Scroll Stacked Column 2D Chart is a multi series chart. Please see the above link again. -
waht files to upgrade (3.05 to 3.07)
Arindam replied to Arindam's topic in Installation and Upgrades
Hi, You have to replace swf files and FusionCharts.js file. -
Hi, yes it is possible. Could you please see our blue print application?
-
My ASP page does not display FusionChart
Arindam replied to maks's topic in FusionCharts and ASP.NET
Hi, Could you please send us full source code? -
Drill Down chart Display in same page without page referesh
Arindam replied to sivatech001's topic in Suggestions & Requests
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 -
Running FusionCharts_Evaluation PHPClass Samples render only the word "Chart."
Arindam replied to Loren's topic in Bug Reports
Hi, Could you please try with this FusionCharts_Gen.php file? FusionCharts_Gen.zip -
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.
-
Does Multi-series Stacked Column 2D chart has scroll pane function?
Arindam replied to zhxcookie's topic in FusionCharts and PHP
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 -
Hi, I am afraid it is not possible as of now. You have to do this by manually. <category label='Apple...' >
-
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