Arindam
Members-
Content count
730 -
Joined
-
Last visited
Everything posted by Arindam
-
Hi, I am afraid, long text not supported in Stack Bar 3D or Stack Bar 2D but Stack Column 3D and 2D can support it.
-
Hi, As per our development team. The maximum size of a Flash movie can be 4000x4000 pixels
-
Hi, Could you please use %26apos; for ' ?
-
Hi, Could you please check whether SWF present with in that folder also check FusionCharts.js file and path are correct?
-
Hi, Could you please provide us source code?
-
Hi, Could you please use chart attribute LabelDisplay='STAGGER' or increase charts width or rotate label with rotateLabels='1' ?
-
Hi,Could you please right click on attachment and after that Save target as and save it?
-
Hi, Could you please replace & with %26amp; ?
-
"Expected ;" JavaScript Error on Some Systems
Arindam replied to itsmmm2002's topic in Javascript Problems
Hi, Could you please provide a simple code (aspx,aspx.cs) and FusionCharts.dll file that you are using? -
Hi, Could you please modify your code? your Code: new XElement("Set", new XAttribute("label", "'Jan'"), Code Change to: new XElement("Set", new XAttribute("label", "Jan"), also change same code for all month. ================================ At Chart Render Time Please Change to this code ->> string strXML = xml.ToString();strXML = strXML.Replace(""", "'"); strXML = strXML.Replace("r", ""); strXML = strXML.Replace( "n", ""); return FusionCharts.RenderChartHTML("../FusionCharts/Column3D.swf", "", strXML, "myFirst", "800", "600", false);
-
Hi, I am afraid vertical divisional lines are not possible in Column2D V3 FusionCharts.
-
Hi, Could you please follow this XML? <chart caption='Date wise meals plan' subcaption='From 10/09/2008 - 17/09/2008' xAxisName='Date' yAxisName='Quantity' rotateLabels='1' slantLabels='1' placeValuesInside='1' > <set label='10/09/2008' value='58' /> <set label='11/09/2008' value='67' /> <set label='12/09/2008' value='57' /> <set label='13/09/2008' value='60' /> <set label='14/09/2008' value='55' /> <set label='15/09/2008' value='59' /> <set label='16/09/2008' value='56' /> <set label='17/09/2008' value='58' /> </chart>
-
How to set the Y axis interval values
Arindam replied to rsivamanickam's topic in Suggestions & Requests
Hi, Could you please follow this XML? <chart palette='2' caption='This Weeks meals plan' xAxisName='Product' yAxisName='Value' showValues='1' formatNumberScale='0' useRoundEdges='1' numberSuffix='%' numDivLines='9' yAxisMaxValue='100' yAxisMinValue='0' adjustDiv='0' yAxisValueDecimals='0' > <set label='A' value='58.1' /> <set label='B' value='67.12' /> <set label='C' value='57.1' /> </chart> For 5000 number scale you can use <Chart numDivLines='9' yAxisMaxValue='5000' yAxisMinValue='0' adjustDiv='0' > -
Hi, Could you please use color attribute for that? <Chart > <set value="20" label="class 1" color='000000' /> <set value="40" label="class 2" color='FF0000' /> <set value="90" label="class 3" color='1af120' /> </Chart>
-
How to set the Y axis interval values
Arindam replied to rsivamanickam's topic in Suggestions & Requests
Hi, Could you please follow this way? <Chart numDivLines='10' yAxisMaxValue='100' yAxisMinValue='0' > <set value='20' label='class 1' /> <set value='40' label='class 2' /> <set value='90' label='class 3' /> </Chart> -
"Expected ;" JavaScript Error on Some Systems
Arindam replied to itsmmm2002's topic in Javascript Problems
Hi, Could you please download updated FusionCharts.dll file from this post for fix javascript error? http://www.fusioncharts.com/forum/FindPost6853.aspx -
Hi, Could you please use FusionCharts.js? fusion.js is previous version of js file.
-
Hi, I am afraid it is not possible as of now.
-
Why won't my chart load with setDataURL in Firefox?
Arindam replied to bnordeng's topic in Javascript Problems
Hi, Could you please provide us your full code via email as attachment? -
Why won't my chart load with setDataURL in Firefox?
Arindam replied to bnordeng's topic in Javascript Problems
Hi, Could you please use url encode with in setDataURL and try again? i.e var dataURL= escape(sCurrChart + sQuerystring); chartObj.setDataURL(dataURL); -
Hi, Could you please email [email protected] this.
-
hi, Could you please follow this? strURL=server.URLEncode("rpt_3a.asp?Package=" & LaborArray(x,1) & "&StartDate=" & vStart & "&EndDate=" & vEnd) linkParam="link='" & strURL & "'"
-
hi, Could you please see this link? http://www.fusioncharts.com/docs/Contents/DrillDown/Simple.html
-
hi, could you please check xml whether you are using imageSave='1' or not? If imageSave='1' present on xml then image save option will appear. see this link http://www.fusioncharts.com/docs/Contents/SAISetting.html
-
Chart does not appear in my ASP.NET page!
Arindam replied to dataAccess's topic in FusionCharts and ASP.NET
Hi, Could you please tell us whether chart appears white or given some error on page? Also I found one error in your program please rectify it and test again. 'Close chart element xmlData = xmlData.Append("</chart>") Change to: xmlData.Append("</chart>")