Rahul Kumar

L1 Moderators
  • Content count

    1,253
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Rahul Kumar

  1. scroll starting point in gantt

    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
  2. 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>
  3. Chart SEES values, but doesn't DRAW them

    Hi, Could you please send us the generated XML and chart's SWF name that draws nothing.
  4. How can I convert this code?

    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&registerWithJS=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&registerWithJS=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
  5. 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
  6. scroll chart for single series

    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>
  7. event "onDrag" in DragNode

    Hi, I am sorry, onDrag event is not exposed to JS as of now.
  8. Google Visualization Like FusionCharts

    Hi, I am afraid, it is not possible as of now.
  9. Add anchors (or marker points)

    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).
  10. Setting minimum value in X-Axis

    Hi, I am afraid, it is not possible as of now.
  11. Hi, I am sorry for the issue you are facing, Please use our updated FusionMaps.dll file. (Attached with this post.). FusionMaps.zip
  12. xsl transform of ampersand breaks caption and currency display

    Hi, Could you please try using %26 instead of & in your XSL?
  13. Gradients in Area Charts (stacked or otherwise?)

    Hi, I am afraid, it is not possible as of now.
  14. Hi, Please see this for more information: http://www.fusioncharts.com/docs/Contents/PHPClassAPI/PHPClass_Drill.html
  15. Not able to print

    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.
  16. Overlapping labels in Pie chart

    Hi, Could you please tell us which chart version you are using? Also, please try updating your chart.
  17. Million and Billions not coming in MSBar2D

    Hi, You can use showFCMenuItem='0' attribute in [ chart ] element to remove About FusionCharts, in right click menu. example: [ chart....showFCMenuItem='0' .... ]
  18. 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
  19. Marker to open in new window

    Hi, I am afraid, drill down in a new window is not supported as of now.
  20. Hi, No problem, but you should replace all files and try again?
  21. Million and Billions not coming in MSBar2D

    Hi, Could you please replace all files and try again?
  22. Unable to use < in legend

    Hi, Could you please see this http://www.fusioncharts.com/forum/FindPost10935.aspx
  23. Multi-series Line 2D Chart with SQL Query

    Hi, Could you please try our Blueprint application and V3 Basic example (located in our FusionCharts V3 packageCode folder)?
  24. Widgets Labels

    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.
  25. Click to activate and use this control

    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.