priyank15

Members
  • Content count

    20
  • Joined

  • Last visited

Everything posted by priyank15

  1. Hi, I was previously using a evaluation copy of Fusion charts XT. and I downloaded the lasted Fusion Suite to use the radar chart from Power Charts. I included the Radar.swf file and FusionCharts.HC.PowerCharts.js file from the Charts folder of the Power charts package into my own projects charts directory (which has othe swf and js file for fusion charts). When I try to run I get some error in the js files (from the firebug console) related to FusionCharts,HC.js.. Are the common js files in each package of charts unique to that package? I even tried to use the whole powerCharts package by adding the other js file from other packages but its still gives me error? Is there an issue running fusionCharts XT with PowerCharts in same project? Thanks in Advance..
  2. Hi, I have downloaded the demo version for FusionChartsXT and need to render the charts using javaScript, So I have uninstalled the flash player and tried to run the application. It still doesnt show the charts in javascript mode. I have the FusionCharts.js, FusionCharts.HC.js, FusionCharts.HC.Charts.js and jquery.min.js all in one location. in my web app. What else do I need to so, and why doesnt the chart render in javascript? Thanks Priyank
  3. Hi Sumedh, I am not sure what exactly do you mean when saying cart specific XML format? I am using the standard XML format for 3d bar charts and they show up fine when flash is installed (proving that xml is valid) and when I uninstall the flash plugin, the charts should render using javascript right? since I have setup the javascript files as specified. Please advice. Thanks
  4. Hi, I am using fusionmaps World Map using Javascript <script> var map = new FusionMaps("/gra/swf/Maps/FCMap_World.swf", "Map1Id", "750", "400", "0", "0"); map.setDataURL("${request.getContextPath()}"+"${marker_simplepath}" + "mymap" + ${userid}+".xml"); map.render("mdiv"); </script> How do I set the style for the Flash Object like if I want to set properties like style="z-index: inherit;position: relative;" to the flash object. how do I do it? in other occurrences I use fusion charts like this <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" align="center" width="440" height="350" name="Column3D" style="z-index: inherit;position: relative;" codebase="http:/download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" id="Column3D"> <param name="movie" value="/gra/swf/FCF_Column3D.swf" /> <param name="FlashVars" value="&dataXML=${dataXML}" /> <param name="quality" value="high" /> <param name="wmode" value="transparent" /> <embed src="/gra/swf/FCF_Column3D.swf" flashVars="&dataXML=${dataXML}" quality="high" width="440" height="350" name="Column3D" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object>
  5. Hi I am rendering a map using setDataURL("path to map xml"), currently when I give a path which a valid URL only then does the Map load. If I give the path as a disk location , it doesnt work since it just appends this path to the base URL which makes it an invalid URL. so if the path is /myapp/js/my1.xml - it works as I have my js folder in web-app directory so http://localhost:xxx/myapp/js/my1.xml is valid if the path is like C:/xmls/my1.xml - it doesnt work since http://localhost:xxx/myapp/C:/xmls/my1.xml is invalid URL. but since we are deploying a war we want to keep the XML outside the web-app , how do I set the path in setDataURL() method. Thanks & Regards Priyank
  6. Hi , I am new to Fusion Maps , I was wondering if we can color each marker in a map with different color - bgcolor and bordercolor , so something like this: <marker id='bgw' x='201.91' y='140.68' label='Bridgewater' color='BFBFBF' /> either in definition or application tag , is it possible? Looking urgently for an answer. Thanks -Priyank
  7. Hi, I need markers on the World Map.swf and I was just going through the Marker XML data file for WorldwithCountriesData.xml , then I see that the X& Y values are for a particular size of the Map in pixels I want to know what size is that and also, can the x&y position calibrated for a particular map size be used to recalculate the x&y for the same map of a larger/smaller size, or do we have to map the markers all over again for a different sized map. This is really important to me because it would affect features offered on the Map like zoom in , zoom out , etc.