Jump to content
We've recently updated our Privacy Statement, available here ×

vikas_as

Members
  • Posts

    11
  • Joined

  • Last visited

vikas_as's Achievements

Apprentice

Apprentice (3/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Collaborator Rare

Recent Badges

0

Reputation

  1. Its not one single jrxml its a collection of jrxmls which shown as a single html
  2. Hi, I have a requirement of creating a single html file of multiple reports for which i'm using the batch export by using JASPERPRINT_LIST of JRHtmlExporterParameter. I'm able to create a single html file but its pagination is not in place. I have created each of the individual reports with page size of US-Letter and when i take a print out of individual reports it works fine, where as when i'm trying to take a print out of the multiple report html i have a problem as the page size of each individual report is not maintained. Second report onwards the margins that were given to each of the individual reports is removed which is causing the problem and i'm not able to take prints with correct pagination. Any help would be appreciated.
  3. Hi, I was using jasperreports 3.7.0.1 jar in my application . I'm exporting the jasper to an html. I upgraded to jasperreports 4.1.1 jar and after this upgradation, the text boxes that are being displayed are being cut especially characters like 'g' 'y' etc. The problem is seen only in safari browser but not in firefox. I'm attaching the screen shots. I have also put in the the html code that was generated with both the versions. Can someone help me out with this? Code:Code with 3.7.0.1 jar<td valign="middle" style="text-align: center;"><span style="font-family: Helvetica; color: #000000; font-size: 15.0px;">No Backlog</span></td>Code with 4.1.1 jar <td style=" vertical-align: middle;text-align: center;"><p style="overflow: hidden; line-height: 1.0; text-indent: 0px; "><span style="font-family: Helvetica; color: #000000; font-size: 15px;">No Backlog</span></p></td>
  4. Hi , I was using jasperreports 3.7.0.1 jar in my application and there is a multi axis chart which had output as screenshot 1 It was showing y-axis on both sides of the chart After using jasperreport 4.1.1 jar it showing both the y-axis on a single side as in screenshot 2. Let me add that i have increased the DPI using the jar jasperreports 4.1.1. Please let me know how to show the axis on both sides of the chart as with 3.7.0.1 jar. Any help would be appreciated.
  5. Hi , I'm using Ireport 3.7.1 for creating the reports. I'm using jasperreports jar for executing the reports in a web application. I updated the jasperreports jar from 3.7.0.1 to 4.1.2 as i had a requirement for increasing the dpi. Now after using the new jar 4.1.2 i'm getting the error as below when i'm trying to generate reports net.sf.jasperreports.engine.JRRuntimeException: No such parameter REPORT_CONTEXT. I have pasted the full trace below. Any help would be much appreciated. Code:net.sf.jasperreports.engine.JRRuntimeException: No such parameter REPORT_CONTEXT at net.sf.jasperreports.engine.fill.JRFillDataset.getParameterValue(JRFillDataset.java:1050) at net.sf.jasperreports.engine.fill.JRFillDataset.getParameterValue(JRFillDataset.java:1031) at net.sf.jasperreports.engine.fill.JRFillDataset.setParameterValues(JRFillDataset.java:559) at net.sf.jasperreports.engine.fill.JRBaseFiller.setParameters(JRBaseFiller.java:1237) at net.sf.jasperreports.engine.fill.JRBaseFiller.fill(JRBaseFiller.java:869) at net.sf.jasperreports.engine.fill.JRBaseFiller.fill(JRBaseFiller.java:813) at net.sf.jasperreports.engine.fill.JRFiller.fillReport(JRFiller.java:58) at net.sf.jasperreports.engine.JasperFillManager.fillReport(JasperFillManager.java:417) at net.sf.jasperreports.engine.JasperFillManager.fillReport(JasperFillManager.java:247) at com.apple.espresso.reporting.common.ReportHelper.generateJasperPrint(ReportHelper.java:45) at com.apple.espresso.reporting.servlet.ReportServlet.doProcess(ReportServlet.java:251) at com.apple.espresso.reporting.servlet.ReportServlet.doGet(ReportServlet.java:69) at javax.servlet.http.HttpServlet.service(HttpServlet.java:617) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:235) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:190) at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:92) at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.process(SecurityContextEstablishmentValve.java:126) at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:70) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:158) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:330) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:829) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:598) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:637)
  6. Legend border can be removed by using the chart object and setting the legend's border to 0 in the customizer class Code:if(chart.getLegend()!=null) { chart.getLegend().setBorder(0.0, 0.0, 0.0, 0.0); }
×
×
  • Create New...