Jump to content

tsathya

Members
  • Posts

    5
  • Joined

  • Last visited

tsathya's Achievements

Rookie

Rookie (2/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Conversation Starter Rare

Recent Badges

0

Reputation

  1. Hello, I am using Jasperreports 3.7.3. I have a simple report with many columns. If I set the report size to be 600 * 800, the PDF output is legible when printed, but some columns towards the end are missing. If I increase the report width, all the columns get displayed but the report is not legible -the font size is very small that I can hardly see. If the report width is small, shouldn't the remaining columns get displayed in the next page ? Thanks for your help.
  2. I got this error in version 3.0.0 I migrated to 3.7.3 Still I get the error. Any ideas? Thanks
  3. Hello, I changed my jasperreports and ireport from 3.0.0. to 3.7.3 The reports give me the following error when dynamically compiled - net.sf.jasperreports.engine.JRException: org.xml.sax.SAXException: http://java.sun.com/xml/jaxp/properties/schemaSource at net.sf.jasperreports.engine.xml.JRXmlLoader.loadXML(JRXmlLoader.java:245) at net.sf.jasperreports.engine.xml.JRXmlLoader.loadXML(JRXmlLoader.java:228) at net.sf.jasperreports.engine.xml.JRXmlLoader.load(JRXmlLoader.java:216) at net.sf.jasperreports.engine.xml.JRXmlLoader.load(JRXmlLoader.java:170) at net.sf.jasperreports.engine.xml.JRXmlLoader.load(JRXmlLoader.java:154) I need to dynamically change the width of the chart in the report depending on how many months it reports on. So I load the jrxml using JasperDesign jasperDesignLine = JRXmlLoader.load(url1); and it fails in this line. Any ideas ?. Thanks Code:String url1= context.getRealPath("jrxml")+"\\report1.jrxml"; JasperDesign jasperDesignLine = JRXmlLoader.load(url1);JRBand summaryBandLine = jasperDesignLine.getSummary();JRElement monthwiseChart =summaryBandLine.getElementByKey("MonthwiseChart");int nWidth=100 + 250*(nNumberOfMonthsSelected); if(nNumberOfMonthsSelected >10 )nWidth=70*(nNumberOfMonthsSelected); monthwiseChart.setWidth(nWidth);JasperCompileManager.compileReportToFile(jasperDesignLine,context.getRealPath("jrxml")+"/reportChartWidthExtended.jasper");
  4. Hello, I have issues with the borders in my cross-tab report. Lines don't align correctly and some lines are cut short before they reach the next cell. The PDF comes out correctly, though. Only the HTML version gives problems. Any suggestions ? Thanks
  5. Hello, I get this error in my report - java.lang.IllegalStateException: stack corruption. Is class net.sf.jasperreports.engine.fill.JRContinuationSubreportRunner instrumented for javaflow? The same report works fine in development environment, but it doesn't work in production. I don't have the javaflow jar file in both machines. The report is a cross-tab report with another cross-tab report in the summary section. Can someone shed some light ? Do you need more info before you can answer ? Thanks for the help.
×
×
  • Create New...