hjavali

Members
  • Content count

    3
  • Joined

  • Last visited

About hjavali

  • Rank
    Forum Newbie
  1. I am using Fusion Charts 3.2 and using print manager to print charts. Prints are much better compared to previous versions of fusion charts in firefox. However the charts are still clipped off at the end especially when I user 100% for width. Here are the details of my environmetn and code: I am using VB.NET I include FusionCharts.js in my aspx file. ltlPr and LtlPrint are the two literals. Following is my code in code behind: (note that sXmlData contains the xml string for the chart.) ltlPr.Text = FusionCharts.EnablePrintManager() ltlPrint = FusionCharts.RenderChart("FusionCharts/Column3D.swf", "", sXmlData, "myNext", "100%", "300", false, true) If I change parameter 5 (width) to specific number of pixels, say 600, prints are fine. But specifying 100% clips the border if the chart at the end when printed from firefox. Any help is highly appreciated.
  2. Export To Pdf Error In Asp.net

    Yes that was it. Thank you very much! -Hemanth
  3. I am using FusionCharts 3.2 from ASP.net application using VB.NET. Here is how my chart xml node looks like (only related attributes shown): "<chart exportEnabled='1' exportTargetWindow='_blank' exportHandler='\FusionCharts\ExportHandlers\ASP_Net\FCExporter.aspx' showFCMenuItem='0' baseFontSize='11' " ........ I use FusionCharts.RenderChartHTML(""/FusionCharts/ScrollCombi2D.swf" ......) method to reneder the chart. Chart shows perfectly fine on browser. When I right click on the chart in browser and click export to pdf and I see "captureing data " progress bar for a short time and get the following error on the server for file FusionCharts\ExportHandlers\ASP_Net\FCExporter.aspx.cs . Server Error in '/' Application. Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. Compiler Error Message: CS0116: A namespace does not directly contain members such as fields or methods Source Error: Line 1: /**Line 2: Line 3: * Clearly there is no namespace in the FCExporter.aspx.cs file and hence this error. Does any one know how to get around this error? Thanks a lot -Hemanth