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

nmn

Members
  • Posts

    27
  • Joined

  • Last visited

nmn's Achievements

Explorer

Explorer (4/14)

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

Recent Badges

0

Reputation

  1. i have same problem but since i am using acrobat reader there is no problem. but linux pdf viewer (Documnet Viewer 2.26.2) cant open it correctly, same red gradient. use acrobat viewer if you can.
  2. hi lucian, as you requested i am sending my list component's problem screen shot with my report design. http://img36.imageshack.us/img36/8527/listelement.jpg
  3. create your jrxml directly from api. Do not use ireport.
  4. hi, im using version 3.7.1. I have list component on my reports, if list doesnt fit one page it goes to the next page but it doesnt stretch correctly. For exampe i have a list component and 2 text fields in it. These text fields are on same "y" coordinate, on different "x" coordinates. Let me try to draw it; _________ __________ Text Field 1 Text Field 2 _________ __________ These text fields are in same frame and the frame is in List Component. In some cases at the and of the page textfield 1 or 2 has to be stretced. When it continue on the next page The other text field is being reprinted! So it looks like a new row. That was for List component, i have a problem with frame component either. I took a screenshot and posting it. How shoul I prevent this? http://img215.imageshack.us/img215/6281/screenshotekr.png
  5. problem solved. if you want to move the item label out of the bar, you will use Chart Customizer. There is sample customizer class in samples/charts/BarChartCustomizer. well, you will; ItemLabelPosition position = new ItemLabelPosition(ItemLabelAnchor.OUTSIDE12, TextAnchor.CENTER); renderer.setPositiveItemLabelPosition(position); that makes your chart looks like; __2__ | | | | instead of; _____ | 2 | | |
  6. i have same problem with 3DBarchart. my chart is vertical and for the values like "0 and 1" it cant print item values. is there a way to print the labels out the bar not on the bar?
  7. are you planning to upload new version? if i have access, if you tell me how to do i can upload all new versions? i want to help.
  8. could you please deploy 3.7.2 into your repository? i am looking i'm looking forward for ppt exporter :)
  9. problem solved. i understood that, group order is very important. if you use a dummy group between the real groups it behave like a normal group
  10. hi, i have fake groups in my reports (no group expression) but they behave like they have expression. am i missing something? here is my code; JasperDesign reportDesign = new JasperDesign(); JRDesign personInfoGroup = new JRDesignGroup();personInfoGroup.setName("personInfoGroup");personInfoGroup.setExpression(null);JrDesingBand band = new JRDesignBand();band.add(....) // add some elementspersonInfoGroup.setGroupFooter(band);reportDesign.addGroup(personInfoGroup); Post Edited by nmn at 02/19/2010 08:10
  11. hi, there is a stretch bug at page footer section. let me explain, i have two textfield component at page footer section. first one is at x=0 and y = 0 cordinate and the other is below the first. if the first textfield stretchs(stretchwithoverflow = true) and second is set to "position_type_float" second one diseppears. i am designing my reports using by api and sending my code to be more understandable. int height = 15; int width = 515; int x = 0; int y = 0; JrDesignTextField pageNumberField = new JrDesignTextField(); pageNumberField.setX(x); pageNumberField.setY(y); pageNumberField.setHeight(height); pageNumberField.setWidth(width); pageNumberField.setStretchWithOverflow(true); JrDesignTextField footerTextField = new JrDesignTextField(); footerTextField.setX(x); footerTextField.setY(y+height); footerTextField.setHeight(height); footerTextField.setWidth(width); footerTextField.setStretchWithOverflow(true); footerTextField.setPositionType(JRBaseElement.POSITION_TYPE_FLOAT); JrDesignBand footerBand = new JrDesignBand(); footerBand.setHeight(heigh+height); footerBand.addElement(pageNumberField); footerBand.addElement(footerTextField); baseReportDesign.setPageFooter(footerBand); in this condition, if pageNumberField stretchs footerTextField disappears.
  12. ty very much teodor, 1 karma is coming for you :)
  13. are you planning to deploy 3.7.1 into your mvn repository? i have a problem with list component and its solved in 3.7.1
  14. i think you should design your report by using api. i have a report that is prepared according to user parameters. one of these parameters is that; user select if he wants to see page header and footer. i catch this request and prepare the report JRXML directly from api. you can use JaserDesign class.
×
×
  • Create New...