-
Content count
1,253 -
Joined
-
Last visited
-
Days Won
3
Everything posted by Rahul Kumar
-
Hi, Could you please through check your code? Because we just told you to change the attribute collectNullData='0' to connectNullData='1' that is already a string.
-
Hi, Could you please try the attached file? mygraph.htm.txt
-
Hi, Could you please try using: $strXML = "<chart palette='2' caption='PTP' subCaption='subcaption' showValues='0' divLineDecimalPrecision='1' PYAxisName='PTP' SYAxisName='Res Lvl' formatNumberScale='0' setAdaptiveYMin='1' labelDisplay='rotate' slantLabels='1' collectNullData='0' connectNullData='1' >";
-
Negotiate Positions of Labels / Values for Series MSColumn3DLineDY
Rahul Kumar replied to AlexOlivier's topic in FusionCharts and ASP.NET
Hi, I am afraid, this is not possible as of now. You need to turn off for one series. -
Can I click on a fusion chart and pop up a window with related information?
Rahul Kumar replied to savanna's topic in General usage
Hi, Could you please follow this FusionCharts Documentation->Guide for Web Developers->Drill Down Charts for detail information. You can also follow this link: http://www.fusioncharts.com/forum/Topic7701-43-1.aspx. -
Hi Avinash, We don't have the sample code, but a DLL which allows to save chart as image, and also to print the chart, but this DLL only works for WinForm. Here are the code snippets that will show, how to use ChartToImage.dll. private void btnPrint_Click(object sender, EventArgs e){ ChartToImage.ChartToImage.PrintChart(FC.Handle, FC.Width, FC.Height, false);} private void btnSaveChartImage_Click(object sender, EventArgs e) { ChartToImage.ChartToImage.GetChartImage(FC.Handle, FC.Width, FC.Height).Save("C:FusionCharts.jpg");} You can download the ChartToImage.dll from the Attachment. NOTE: You need to add reference to ChartToImage.dll. ChartToImage.zip
-
Calling Image saving Mechanism on button click
Rahul Kumar replied to sachin257's topic in FusionCharts and JSP
Hi, Could you please make sure that you are using FusionCharts v3.0.6. -
Hi, Could you please use FusionChartsWMode.js. You can download it from http://www.fusioncharts.com/Downloads/FusionChartsWMode.zip.
-
Hi, Could you please try also to set FrameNum=0 along with Playing to false, and then start your SlideShow again.
-
Hi, I am afraid, you might be using absolute url for the XML path. e.g. "http://www.cdn.mydomain.com/x.xml" . This is blocked by FusionCharts to prevent XSS attacks. Could you please let us know, whether you can use JavaScript (DHTML) in the page? In that case you can use XMLHTTP object from JavaScript to get the XML and update the chart using setDataXML() function.
-
Save Chart as image on server side
Rahul Kumar replied to Rahul Kumar's topic in FusionCharts and PHP
Hi, I am afraid, It is not possible to render the chart at server side. -
Hi new2fc, Could you please remove the Pragma: no-cache, Cache: no-cache, from the server. Because addition of meta tag does not work in IE.
-
Hi, Mail your code to support [at] fusioncharts.com.
-
Hi, Could you please send us the code?
-
Hi, You can attach the code in the current thread or mail us at support [at] infosoftglobal.com.
-
Hi, I am afraid, it is not possible as of now.
-
Hi, please use [ graph pieRadius="Numeric Pixels" ]. For more detailed information please see the documentation.
-
Hi, Could you please send us the code?
-
Can I change the "Capturing Data" message??
Rahul Kumar replied to pedroten's topic in General usage
Hi, I am afraid, it is not possible as of now. -
Hi, Could you please download the latest version of FusionCharts?
-
Hi Sirill, Could you please follow these codes: // This will execute the flash. graph.Execute_Begin(); // Now set the dataXML variable. graph.Execute_SetVariable("dataXML", xml);// Important Step. Console. WriteLine("Wait till chart fully load itself."); Console.ReadLine();// Capture the SWF as Image. graph.Execute_GetImage(); // Save the captured Image(Binary) in File.graph.SaveToFile( "FusionCharts.bmp");It works like this: When you invoke graph.SaveToFile() method, it just captures SWF's frame No. 0 or more but not the final frame i.e. when chart completely loads. To overcome this issue you have to wait till chart finished loading itself, for this purpose I have used Console.ReadLine();. However if you don't like to use ReadLine() you can use some delay method.
-
Hi, You can use [ set value='10' link="P-detailsWin,width=400,height=300,toolbar=no,scrollbars=no, resizable=no-{location to webpage}" /] to open link in a new window. For more information (documentation) on this you can follow this link: http://www.fusioncharts.com/docs/Contents/DrillDown/PopUps.html .
-
How to change Chart type dynamically?
Rahul Kumar replied to avinash's topic in Suggestions & Requests
Hi Avinash, Please use the following code: private void btnColumn3D_Click(object sender, EventArgs e){ FC.Movie = Application.StartupPath + "FCF_Column3D.swf?chartWidth=" + FC.Width.ToString() + "&chartHeight=" + FC.Height.ToString();FC.SetVariable( "dataXML", textBox1.Text);} private void btnDoughnut2D_Click(object sender, EventArgs e){ FC.Movie = Application.StartupPath + "FCF_Doughnut2D.swf?chartWidth=" + FC.Width.ToString() + "&chartHeight=" + FC.Height.ToString();FC.SetVariable( "dataXML", textBox1.Text);} -
Hi, Could you please try using [category x='xxxx' label='{some date}' /]?
-
Hi, Could you please try to set decimals='1' or greater value?