-
Content count
1,253 -
Joined
-
Last visited
-
Days Won
3
Everything posted by Rahul Kumar
-
Including the plus sign "+" in Drag Node chart
Rahul Kumar replied to gramps's topic in Miscellaneous
Hi, Could you please see this post : http://www.fusioncharts.com/forum/FindPost10935.aspx -
Hi, I am sorry, this is not possible as of now.
-
Hi Ullas, Yes I am very sure, however you could be sure from your side, if you download and try our FusionCharts Evaluation package, it supports all the features that an Enterprise license has, except that FusionCharts Evaluation version shows an Evaluation tag at the top of the charts. You can download evaluation version from: http://www.fusioncharts.com/Downloads/Evals/FusionCharts_Evaluation.zip
-
Hi, I am afraid, canvasBorderAlpha work only with FusionCharts V3 not with FusionCharts Free and the chart you are using is a chart from FusionCharts Free package.
-
Hi, I think the code is now working fine, as you said chart is getting rendered for the first time then it cought error at second run because myChart.render is not exposed to JavaScript, now to resolve that issue you would need to change your code logic.
-
Hi, Could you please tell us chart's swf name to which you have implemented above attribute.
-
Hi, Yes these are in the same domain, but in different port. Also link (http://192.168.1.1:9999/cgi-bin/WebObjects/AppName.woa/wa/getData?name=test) won't work due to restrictions (XSS security).
-
Hi, The issue you are facing just because you have not invoked Flash ExternalInterface, which is done by passing registerWithJS="1" to the chart's swf. You would need to render the chart first time using this parameter. Please see the code below, I have added two more parameter ("0", "1") into the FusionCharts constructor, the first one (,"0","1") will render the in debug mode(if value is 1), and the second one (,"0","1") will expose Flash API function, so that we can call it (setDataXML/setDataURL/Print/saveAsImage) from JavaScript. var chartType = "FCF_" + myPageData[drop] + '.swf'; var myChart; var currentChart; if (chartType != currentChart) { myChart = new FusionCharts("fusioncharts/" + chartType, "myChartId", "800", "400","0","1"); } else { myChart = getChartFromId("myChartId"); } currentChart = chartType; myChart.setDataURL("esmt/feedxml.pl?" + drop); myChart.render("chartdiv");
-
Hi, Could you please try using canvasBorderAlpha='0' attribute in [chart...] element?
-
How do I make Pie Chart links pass parameters to a GridView - HELP
Rahul Kumar replied to thoth's topic in FusionCharts and ASP.NET
Hi, Could you please try the following code? <Chart Caption='CC/CCA Regional Report - 12/01/2008 to 12/05/2008' Palette='2' ShowNames='1' ShowValues='1' NumPrefix='' ShowSum='0' Decimals='1' UseRoundEdges='1' xAxisName='Regions' yAxisName='Number of Lines'> <Categories> <Category label='EAST' /> <Category label='WEST' /> </Categories> <dataset seriesname='CLOSED'> <set value='3098' link='updateChart("2:EAST" )'/> <set value='5075' link='updateChart("2:WEST" )' /> </dataset> <dataset seriesname='VALIDATED'> <set value='3418' link='updateChart("2:EAST" )'/> <set value='5693' link='updateChart("2:WEST" )' /> </dataset> </Chart> You would need to use " for single quote (') character. -
Hi, Could you please send us the link that you are using from Web Server, also please give us a screen shot of your folder structure marking that which is your root folder.
-
Hi, MultiLevel Pie chart supports unlimited number of pie levels.
-
Hi, Could you please try using the following code? StringBuilder prepairedXml = null; //prepairedXml = prepareXMLFortwoClients(dset); if (dset.Tables[1].Rows.Count > 1) { prepairedXml = prepareXMLFortwoClients(dset); // To display two clients } string outPut = ""; outPut = InfoSoftGlobal.FusionCharts.RenderChartHTML("FusionCharts/DragNode.swf", "", prepairedXml.ToString(), "dispChart1", "700", "600", false, true); //This will make registerWithJS enabled. //Clear panel which will contain the chart pnlPanel.Controls.Clear(); //Add Litaral control to Panel which adds the chart from outPut string pnlPanel.Controls.Add(new LiteralControl(outPut)); // prepairedXml.ToString() Contains xml format
-
Multi-series Line 2D Chart with SQL Query
Rahul Kumar replied to replymeonly's topic in FusionCharts and ASP.NET
Hi, Please find the attachment below. We are giving here two examples, one for Single Series charts and another for Multi Series charts. Multi Series.zip Single Series.zip -
The enable scolling is not working~
Rahul Kumar replied to Rahul Kumar's topic in Suggestions & Requests
Hi, Could you please send us the generated XML? -
Hi, I am sorry for the issue, could you please try using entity id 174 instead of 118 for Russia?
-
Hi, You would need to encode these (some of them) character. Please see the list. !@#$%^&*()_+=-<>:/ Here is the list of characters that requires encoding: 1. If you are using dataXML method. % - %25 & - %26 + - %2b < - %26lt; > - %26gt; 2. If you are using dataURL method. < - < > - >
-
Pb with positionning chart in div
Rahul Kumar replied to equilibrium's topic in FusionCharts and PHP
Hi I am afraid, renderChartHTML method just inserts an HTML Object tag into the page, it does not replace the DIV contains & also you have to provide an unique chart id into that method not the DIV id, where as if you use renderChart method then only the DIV contains will be replaced by the JavaScript code for the chart. -
Hi, I am afraid, this feature is not supported in FusionCharts but in our PowerCharts package there are charts that support multiple axes.
-
Hi, I am sorry, it is not possible as of now.
-
Hi, If you are using old dll then please update it to our latest version. Also please make sure that you are enabling RegisterWithJS property in RenderChartHTML() method.
-
Hi, Yes it is possible to use FusionCharts in Access 2007. You would need to add a Form into it, then goto Form design view, from there click on "insert ActiveX control" then select Shockwave Flash Object, click OK, now right click on shockwave flash object control, click on Properties, In the property sheet search for Movie & set it to "file:///column3d.swf?dataXML=". Now click anywhere on Form and press F5. That's all.
-
Capture map clicks to dynamically add markers
Rahul Kumar replied to JHull24's topic in Using FusionMaps XT
Hi, If you have our FusionMaps pack, then you also have the source code for the same. You can find the source code in "FusionMaps_*ToolsGUI" folder. -
how to display chart in new window
Rahul Kumar replied to Rahul Kumar's topic in FusionCharts and PHP
Hi, Sorry, It is not possible; In another way you could use onClick event of a button to popup a window then provide path to the url, & code the URL file with $FC->renderChart(); -
Hi, I am sorry, this feature is not supported in single series charts as of now.