Nidhi

Members
  • Content count

    7
  • Joined

  • Last visited

About Nidhi

  • Rank
    Forum Newbie
  1. Server Side Export Problem

    After Downloading it ,it is working for me. I think version issue was there. Thanks a lot for the help
  2. Server Side Export Problem

    Can you please send me your MSCombiDY2D.swf. I think there is some problem in this file,if your file working at my end that means problem is in this swf file.
  3. Server Side Export Problem

    NotWorking.zipNotWorking.zipNotWorking.zip Hi My FCExporter file path is correct as I am able to export my column 2d chart with it. Let me give you all code in one zip folder that is working and code in another folder that is not working. I hope we cab have any way that will know the wrong part.Working.zip
  4. Server Side Export Problem

    Hello, Thanks for the help but still it is not working here. Can you please try with this swf file ,if it does not work there that means there is some problem in it. MSCombiDY2D.zip
  5. Server Side Export Problem

    Hello, Thanks for replying. Can you please send me the xml file you are using for line chart that is working with MSCombiDY2D.swf
  6. Hello, I tries to export fusion chart from server as jpg for Column2D.swf and its working well. Its XML is as given : <chart yAxisName='Sales Figure' caption='Top 5 Sales Person' numberPrefix='$' useRoundEdges='1' bgColor='FFFFFF,FFFFFF' showBorder='0' exportEnabled='1' exportAtClient='0' showExportDialog='0' exportfilename='Test' exportAction='save' exportHandler='http://localhost/oilgasweb/FCExporter.aspx'> <set label='Alex' value='25000' /> <set label='Mark' value='35000' /> <set label='David' value='42300' /> <set label='Graham' value='35300' /> <set label='John' value='31300' /> </chart> But when I try with MSCombiDY2D.swf file and xml like : <chart palette='2' numDivLines='9' showValues='0' divLineDecimalPrecision='1' limitsDecimalPrecision='1' PYAxisName='Total BOE' SYAxisName='Production For Period' numberPrefix='$' formatNumberScale='0' exportEnabled='1' exportAtClient='0' showExportDialog='0' exportfilename='WellAnalysis' exportAction='save' exportHandler='http://localhost/oilgasweb/FCExporter.aspx'><categories verticalLineColor='666666' verticalLineThickness='1'> <category showLabel='0' label='28'/> <category showLabel='0' label='57'/> <category showLabel='0' label='84'/><category showLabel='0' label='107'/><category label='138'/><category showLabel='0' label='168'/><category showLabel='0' label='196'/></categories><dataset seriesName='Total BOE' renderAs='Line' color='#E066FF' lineThickness='4' parentYAxis='P' anchorRadius='3' anchorBgColor='#E066FF' renderAs='line' lineDashLen='0' lineDashGap='4' dashed='1'><set value='36891' /><set value='58772' /><set value='72960' /><set value='84635' /><set value='97288' /><set value='106479' /><set value='113442' /></dataset><dataSet parentYAxis='S' anchorSides='4' anchorRadius='4' anchorBgColor='#800517' renderAs='line' lineDashLen='0' lineDashGap='4' dashed='1' seriesName='Production For Period' color='#800517'><set value='' /><set value='755' /><set value='525' /><set value='508' /><set value='408' /><set value='306' /><set value='249' /></dataSet></chart> It does not work. Please help me for this problem.
  7. Hello, I tried to export single series chart and able to do it , My chart rendering code is given below : var myChart = new FusionCharts("Charts/Column2D.swf", "myChartId", "400", "300", "0", "1"); myChart.setXMLUrl("SaveData.xml"); myChart.render("chartContainer"); But when I change Column2D.swf to MSCombiDY2D.swf and change the xml path accordingly it given one error that is "chartObject.hasRendered is not a function" While my xml is already updated with exportEnabled='1' exportAtClient='0' showExportDialog='0' exportfilename='WellAnalysis' exportAction='save' exportHandler='http://localhost/oilgasweb/FCExporter.aspx' . My guess is there is any other way to export multi series chart .