Jump to content
Changes to the Jaspersoft community edition download ×

bogleg20

Members
  • Posts

    8
  • Joined

  • Last visited

 Content Type 

Profiles

Forum

Events

Featured Visualizations

Knowledge Base

Documentation (PDF Downloads)

Blog

Documentation (Test Area)

Documentation

Dr. Jaspersoft Webinar Series

Downloads

Everything posted by bogleg20

  1. Ok, I've attached my jrxml. I don't think i'm explicitly using rotated text. The other funny thing is that if I delete the chart element, the text appears fine. [file name=my_report.jrxml size=7850]http://www.jasperforge.org/components/com_joomlaboard/uploaded/files/my_report.jrxml[/file]
  2. Hi, I'm noticing some weird behavior when I try to print one of my reports after switching over to Java 6. I have several reports, but this seems to affect the reports that are in landscape mode and include JFreeChart objects. So I'm not sure if this is a JFreeChart problem or a Jasper problem. Basically, under java 6, the output of the report seems to get mirrored. Using Java 5: http://www.digitbit.com/my_report.pdf Using Java 6: http://www.digitbit.com/my_report2.pdf Are there any known Java 6 issues with Jasper? Any clues on how I should try and debug this issue? Any help would be greatly appreciated! Thanks! Chris Post edited by: bogleg20, at: 2007/02/01 22:27 Post edited by: bogleg20, at: 2007/02/01 22:27
  3. Moving the setReadOnly(true) after the fill seems to have done the trick. Thanks Lucian! You saved me from myself. =) Chris
  4. Hi, Can someone help me understand the virtualizer? I have a report that is potentially very large where I get OutOfMemory errors during the fill process. So I've taken the code from the VirtualizerApp demo like this: JRFileVirtualizer virtualizer = new JRFileVirtualizer(2, "temp"); virtualizer.setReadOnly(true); parameters.put(JRParameter.REPORT_VIRTUALIZER, virtualizer); report = JasperFillManager.fillReport( design, parameters, dataSource ); When I run my code, I see a bunch of serialized pages accumulate in my temp directory which I assume is good. The problem is however, is that the memory usage seems to remain the same. I still seem to run out of memory at approximately the same point. Am I missing something in the usage of the virtualizer? Thanks Chris
  5. I'm having the same problem, where I don't know the size of the image until runtime and I want it to display at its original size. Anyone know if this is possible? I need this for my current project so any reply would be helpful. Thanks! Chris Post edited by: bogleg20, at: 2007/01/26 21:55
  6. Hi all, In my report, I have an image element that I've set the scaleImage attribute to "Retain shape" because I don't know the exact image size till runtime. This works great when I preview/or print my report as the image displays at its actual size. However, when I export to PDF using JasperExportManager.exportReportToPdfFile() it clips the image to the size of the image element in the report. Has anyone else experienced this problem?
  7. Hi all, I'm working on an Eclipse RCP app, and we have some SWT components that we would like to put into a report. My first thought was to convert our components into SWT images, then convert them to AWT images and maybe use something like JRAbstractSvgRenderer to render it. Is this a feasible solution? Has anyone faced a similar problem? Any advice would be greatly appreciated. Chris
  8. I think I'm trying to do the same thing and I'm having the exact same problem. I've tried to do the simplest thing possible. Create a report with some static text in the detail band. Then I created a subreport with some static text in its detail band. It seems to compile fine, but when I execute, only the text from the master report shows up. I've been playing around with the various settings that I've read from previous posts with no luck. Is what I'm trying to do possible?
×
×
  • Create New...