Arindam
Members-
Content count
730 -
Joined
-
Last visited
Everything posted by Arindam
-
Hi, Could you please send your Chart XML?
-
Hi, Due to Query String [&] is represent field separator in flash object. That
-
HI, Could you please see this link? http://www.fusioncharts.com/free/TermsOfUse.asp?gMenuItemId=9
-
Hi, If your are using Frames then use. link='F-FrameName-target2.html'
-
How to show both percentage and value in the label for Pie chart?
Arindam replied to Rahul Kumar's topic in General usage
Hi, You can show value on label and percentage on tool tip. showPercentageValues='0' showPercentInToolTip='1' You can show percentage on label and value on tool tip. showPercentageValues='1' showPercentInToolTip='0' -
Horizontal Scroll in Real Timeline charts
Arindam replied to Pallav's topic in Using FusionWidgets XT
Hi, I am afraid it is not possible as of now. -
Hi, Could you please use this? If you are using DataXML method please use this xmlStr += " link='JavaScript:jsMethod(%26apos;" + parameter + "%26apos; )'" ; If you are using DataURL method please use this xmlStr += " link='JavaScript:jsMethod('" + parameter + "' )'" ;
-
Problem loading XML data to line chart from ASP
Arindam replied to elias75's topic in FusionCharts and ASP
Hi, Could you please use Server.URLEncode and try again? value="dataURL=<%= Server.URLEncode("TimeSeriesChartData.asp?chartType=" & chartIndex & "&dataPoint=" & request("dataPoint") & "&dateRange=" & dateRange) %>&debugMode=1" -
PERCENTAGE sign is on the wrong side of the numbers
Arindam replied to dannytammyuk's topic in FusionCharts and ASP.NET
Hi, Could you please use numberSuffix='%25' ? -
Hi, Could you please try this? <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="100%" height="220" id="Doughnut3D" > <param name="movie" value="Charts/Doughnut3D.swf" /> <param name="FlashVars" value="&dataXML=<chart palette='2' showBorder='1'><set label='Account Main' value='100' color='FF9933' /> </chart>"> <param name="quality" value="high" /> <embed src="Charts/Doughnut3D.swf" flashVars="&dataXML=<chart palette='2' showBorder='1'><set label='Account Main' value='100' color='FF9933' /> </chart>" quality="high" width="100%" height="220" name="Doughnut3D" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> Note: Please render FusionCharts with fusionCharts JS. it is very easy to render. please visit http://www.fusioncharts.com/docs/Contents/JSEmbed.html Javascript code: <script language="javascript" type="text/javascript" src="JSClass/FusionCharts.js" ></script> <div id="chartdiv" align="center">The chart will appear within this DIV. This text will be replaced by the chart.</div> <script type="text/javascript"> var myChart = new FusionCharts("FusionCharts/Doughnut3D.swf", "myChartId", "100%", "200", "0", "0"); myChart.setDataXML("<chart palette='2' showBorder='1'><set label='Account Main' value='100' color='FF9933' /> </chart>"); myChart.render("chartdiv"); </script>
-
Drill Down chart Display in same page without page referesh
Arindam replied to sivatech001's topic in Suggestions & Requests
Hi, Could you please tell me what technologies (asp, php, .net) are yor using? -
Hi, Could you please provide us your source code?
-
Changing canvas background color on Fusion Map
Arindam replied to kmorse's topic in Using FusionMaps XT
Hi, No Is it not possible to reduce the size of the canvas or remove it altogether? but you can use floating div on the above of the Maps. -
Hi, Could you please use charts attribute showValues='0' ?
-
Hi, I am afraid it is not possible as of now.
-
Hi, You can change dataset color and also can change individual set color (bar color).
-
Hi, Could you please use Styles and follow this step? Add this Styles with in charts XML <styles> <definition> <style name='TTipFont' type='font' isHTML='1' /> </definition> <application> <apply toObject='TOOLTIP' styles='TTipFont' /> </application> </styles> if you use DataXML method then use this <set value='100' label='Jan' toolText='Line1%26lt;BR%26gt;Line2%26lt;BR%26gt;Line3' /> if you use DataURL method then use this <set value='100' label='Jan' toolText='Line1<BR>Line2<BR>Line3' /> Note: BR must be within CAPS
-
Hi, Could you please see documentation and also see this? http://www.fusioncharts.com/docs/Contents/ChartSS/Bubble.html Attribute Name Type Range Description x Number Numeric Value X-axis value for the set. The bubble/scatter point will be placed horizontally on the x-axis based on this value. y Number Numeric Value Y-axis value for the set. The bubble/scatter point will be placed vertically on the y-axis based on this value. z Number Numeric Value Z-axis numerical value for the set of data. The size of bubble would depend on this value (with respect to z values of other bubbles on the chart).
-
Putting xml data file for Fusion map on a different server
Arindam replied to kmorse's topic in Using FusionMaps XT
Hi, I am afraid, we've blocked absolute URLs owing to XSS attacks. And, there is no way to set it off. Our Maps does not accept dataURL="http://denverelections.com/race/2008/president/colorado/fusionmaps.xml". Could you please try using relative path or absolute path without domain? Could you please try using relative URL instead of using absolute URL (one that has http://.. ). Newer version of Maps does not allow absolute URL to stop XSS Attacks. -
Hi, I am afraid it is not possible as of now.
-
Hi, Could you please try with this sample? JSON.zip
-
Changing canvas background color on Fusion Map
Arindam replied to kmorse's topic in Using FusionMaps XT
Hi, Could you please use SWF wmode transparent with setTransparent(true) and set Maps attribute bgalpha='0' with in Map XML? Please follow the attachment. MapDemo.zip -
Hi, Could you please visit this link for save as image option? http://www.fusioncharts.com/docs/Contents/SAIOverview.html http://www.fusioncharts.com/docs/Contents/SAISetting.html http://www.fusioncharts.com/docs/Contents/JS_saveAsImage.html
-
Hi, Could you please visit this link? http://www.fusioncharts.com/docs/Contents/DrillDown/Simple.html http://www.fusioncharts.com/docs/Contents/DrillDown/Frames.html http://www.fusioncharts.com/docs/Contents/DrillDown/PopUps.html http://www.fusioncharts.com/docs/Contents/DrillDown/ClickURL.html http://www.fusioncharts.com/docs/Contents/DrillDown/JavaScript.html
-
Hi, Could you please provide us XML also?