-
Content count
1,253 -
Joined
-
Last visited
-
Days Won
3
Everything posted by Rahul Kumar
-
Hi, I am afraid, it is not possible as of now. But Gantt chart does have auto scrolling feature, in which it automatically scrolls after specified time intervals. Please see to this: http://www.fusioncharts.com/widgets/docs/Contents/GanttScroll.html
-
save multiple charts to image with iframe, javascript function call doesn't work in firefox.
Rahul Kumar replied to FusionCharts Support's topic in General usage
Hi Sachin, Please see the code below: <object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="420" height="190" id="001" ><param name="movie" value="Charts/Scatter.swf" /> <param name="FlashVars" value="registerWithJS=1&dataURL="Gallery/Data/Scatter.xml"> <param name="quality" value="high" /> <embed src="Charts/Scatter.swf" flashVars="registerWithJS=1&dataURL="Gallery/Data/Scatter.xml"" quality="high" width="420" height="190" id="001" type="application/x-shockwave-flash" pluginspage=" http://www.macromedia.com/go/getflashplayer" /></object> In the above code, double quotes are not required. It should be like the following: <object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="420" height="190" id="001" ><param name="movie" value="Charts/Scatter.swf" /> <param name="FlashVars" value="registerWithJS=1&dataURL=Gallery/Data/Scatter.xml"> <param name="quality" value="high" /> <embed src="Charts/Scatter.swf" flashVars="registerWithJS=1&dataURL=Gallery/Data/Scatter.xml" quality="high" width="420" height="190" id="001" type="application/x-shockwave-flash" pluginspage=" http://www.macromedia.com/go/getflashplayer" /></object> -
Hi, Could you please send us the generated XML and chart's SWF name that draws nothing.
-
Hi, Please see the code below: <OBJECT classid="clsid: D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="930" HEIGHT="<%=intHeight %>" id="OBJECT1" align="" VIEWASTEXT> <PARAM name=movie VALUE="../../Common/CChart/Gantt.swf?dataURL=ProjectList_XML.aspx?Value=<%=strValue%>"> <param NAME="FlashVars" VALUE="chartWidth=930&chartHeight=<%=intHeight %>&DOMId=ChartId®isterWithJS=1"> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor value=#FFFFFF> <EMBED src="../../Common/CChart/Gantt.swf?dataURL=ProjectList_XML.aspx?Value=<%=strValue%>" FlashVars="chartWidth=930&chartHeight=<%=intHeight %>&DOMId=ChartId®isterWithJS=1" quality="high" bgcolor="#FFFFFF" WIDTH="930" HEIGHT="<%=intHeight %>" NAME="FC_2_3_Column2D" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED> </OBJECT> Also please, the attached html file will explain in detail. MSArea2D.zip
-
Greek characters not displaying correctly with setDataURL
Rahul Kumar replied to scy's topic in General usage
Hi, The greek.xml file is saved in UTF-8 format but not with BOM enabled, so in order to overcome this issue, the XML file is required to be saved in UTF-8 with BOM enable. Please try using the attached greek.xml file (this file is just again saved with UTF-8 with BOM). greek.xml -
Hi, You could use scroll chart for single series data too, just need to add all single series data under a <dataset> element and you label(s) should be in category. Please see the XML below: <chart palette='2' caption='County Comparison' shownames='1' showvalues='0' numberPrefix='$' useRoundEdges='1' legendBorderAlpha='0'><categories> <category label='Iowa' /><category label='Texas' /> <category label='Virginia' /> <category label='Ohio' /> <category label='Idaho' /> </categories><dataset seriesName='2002' color='AFD8F8' showValues='0'> <set value='25601' /> <set value='20148' /> <set value='17372' /> <set value='35407' /> <set value='38105' /> </dataset> </chart>
-
Hi, I am sorry, onDrag event is not exposed to JS as of now.
-
Hi, I am afraid, it is not possible as of now.
-
Hi, I am sorry, it is not possible as of now, one or more anchor can only be added to the line if you provide one or more data (set element).
-
Hi, I am afraid, it is not possible as of now.
-
Javascript Error When Using ASP.Net RenderMapHTML and IE 7
Rahul Kumar replied to DonXml's topic in Bug Reports
Hi, I am sorry for the issue you are facing, Please use our updated FusionMaps.dll file. (Attached with this post.). FusionMaps.zip -
xsl transform of ampersand breaks caption and currency display
Rahul Kumar replied to Rahul Kumar's topic in XML Issue
Hi, Could you please try using %26 instead of & in your XSL? -
Gradients in Area Charts (stacked or otherwise?)
Rahul Kumar replied to webwright's topic in General usage
Hi, I am afraid, it is not possible as of now. -
Giving links in Pie Chart while charting from database
Rahul Kumar replied to Rahul Kumar's topic in FusionCharts and PHP
Hi, Please see this for more information: http://www.fusioncharts.com/docs/Contents/PHPClassAPI/PHPClass_Drill.html -
Hi, Only using <?xml version="1.0" encoding="UTF-8"?> at the top of XML will not work, you would need to add BOM characters into your XML file. So you would need to tell us which language you are using, also please send us the code for the file that is generating XML.
-
Hi, Could you please tell us which chart version you are using? Also, please try updating your chart.
-
Million and Billions not coming in MSBar2D
Rahul Kumar replied to Rahul Kumar's topic in FusionCharts and PHP
Hi, You can use showFCMenuItem='0' attribute in [ chart ] element to remove About FusionCharts, in right click menu. example: [ chart....showFCMenuItem='0' .... ] -
Foreign and international characters don't show up right in Fusion Maps
Rahul Kumar replied to Rahul Kumar's topic in Bug Reports
Hi, We have attached a sample code, you can take it as a reference. Please note, this sample code is for FusionCharts but its UTF-8 implementation technique will work also with FusionMaps (Last 4-5 lines of the PieData.aspx.vb code file). The Code you have to use is this: //Set Proper output content-type Response.ContentType = "text/xml; characterset=utf-8"; //Just write out the XML data //NOTE THAT THIS PAGE DOESN'T CONTAIN ANY HTML TAG, WHATSOEVER //Just Write out the UTF-8 tag. Response.BinaryWrite(new byte[] { 0xEF, 0xBB, 0xBF });Response.Write(xmlData.ToString()); How to use: You would need to use this code exactly in the same way as given in the Attachment (PieData.aspx.vb). -OR- You can also just paste the above code at the end of your code, but need to replace xmlData variable with your variable name. OR HOWEVER, if it is does not work for you, then please take a look at this: http://www.fusioncharts.com/forum/FindPost8054.aspx Sample Code.zip -
Hi, I am afraid, drill down in a new window is not supported as of now.
-
Million and Billions not coming in MSBar2D and 3D graphs
Rahul Kumar replied to ullasjos's topic in Using PowerCharts XT
Hi, No problem, but you should replace all files and try again? -
Million and Billions not coming in MSBar2D
Rahul Kumar replied to Rahul Kumar's topic in FusionCharts and PHP
Hi, Could you please replace all files and try again? -
Hi, Could you please see this http://www.fusioncharts.com/forum/FindPost10935.aspx
-
Multi-series Line 2D Chart with SQL Query
Rahul Kumar replied to replymeonly's topic in FusionCharts and ASP.NET
Hi, Could you please try our Blueprint application and V3 Basic example (located in our FusionCharts V3 packageCode folder)? -
Hi, I am afriad, it is not possible, as of now. However, you could try to keep the color same for all three Guage Scales.
-
Click to activate and use this control
Rahul Kumar replied to Jschluchter's topic in FusionCharts and ASP.NET
Hi, Just to through some light on the issue which you stated earlier: Because, To render the chart behind an object, it is required to make the chart transparent. So, the code you are using is making the chart transparent.