Arindam

Members
  • Content count

    730
  • Joined

  • Last visited

Everything posted by Arindam

  1. 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.
  2. gantt runs out of ink

    Hi, As per our development team. The maximum size of a Flash movie can be 4000x4000 pixels
  3. XML works for setDataURL but not for setDataXML

    Hi, Could you please use %26apos; for ' ?
  4. Blank Page is shown

    Hi, Could you please check whether SWF present with in that folder also check FusionCharts.js file and path are correct?
  5. Hi, Could you please provide us source code?
  6. YAxis text displayed inside canvas

    Hi, Could you please use chart attribute LabelDisplay='STAGGER' or increase charts width or rotate label with rotateLabels='1' ?
  7. AJAX ModalPopupExtender & IE6

    Hi,Could you please right click on attachment and after that Save target as and save it?
  8. Ampersand in XML

    Hi, Could you please replace & with %26amp; ?
  9. Hi, Could you please provide a simple code (aspx,aspx.cs) and FusionCharts.dll file that you are using?
  10. VS2008 Built in XLM Generator C#

    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);
  11. Attribute missing

    Hi, I am afraid vertical divisional lines are not possible in Column2D V3 FusionCharts.
  12. Date Range

    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>
  13. How to set the Y axis interval values

    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' >
  14. how modify the color of each column?

    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>
  15. How to set the Y axis interval values

    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>
  16. Hi, Could you please download updated FusionCharts.dll file from this post for fix javascript error? http://www.fusioncharts.com/forum/FindPost6853.aspx
  17. fusion.js vs FusionCharts.js

    Hi, Could you please use FusionCharts.js? fusion.js is previous version of js file.
  18. Fusion Chart and SSRS

    Hi, I am afraid it is not possible as of now.
  19. Hi, Could you please provide us your full code via email as attachment?
  20. Hi, Could you please use url encode with in setDataURL and try again? i.e var dataURL= escape(sCurrChart + sQuerystring); chartObj.setDataURL(dataURL);
  21. Pricing for fusion widgets

    Hi, Could you please email [email protected] this.
  22. Need help with 'Link' feature

    hi, Could you please follow this? strURL=server.URLEncode("rpt_3a.asp?Package=" & LaborArray(x,1) & "&StartDate=" & vStart & "&EndDate=" & vEnd) linkParam="link='" & strURL & "'"
  23. links

    hi, Could you please see this link? http://www.fusioncharts.com/docs/Contents/DrillDown/Simple.html
  24. 'Save As Image'

    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
  25. 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>")