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

nmn

Members
  • Posts

    27
  • 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 nmn

  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.
  15. ty very much for your help teodor. i have a problem with upgrading to 3.6.1. we are using maven in our project and i am downloading "Jasper Reports" from maven repository. in maven repository the latest version is "3.5.3". i can download and deploy manually but i want to ask; do you know why maven repository is not updated? you can say that is not your problem but i am really curious about that :) finally i will get latest version and try your solution ang give you feedback. thanks again ;)
  16. i think you should attach a screen shot about your problem.
  17. hi, i have prepared a screenshot. sorry for the blured text but i am working in a company that we have some restrictons :)
  18. on tuesday i will show my report to the customer and my problem still exists. i am really sorry for flood but could someone give me an idea please?
  19. i hate spams but i really need help urgent. doesnt anybody has an idea?
  20. hi, i have a report that is being filled by next() and getFieldValue methods(i have huge data). my textfields were described in detail section. no problem till here but i need header texts for each column on each page. i created a "fake group" before the detail section and placed header textfields in group header. i set reprintHeaderOnEachPage true for this group, it is ok again until the last page. Before last page my detail section ends and personInfo group(fake summary group) goes to next page. So it puts that column headers on last page. if you look my sample jrxml you will understand me :) i am designing my jrxml in the code(with the help of JasperDesign class) but i designed a sample jrxml to explain myself(all textfields are staticTextField at sample but mines are not as you imagine ). Could you give me some idea please? Post Edited by nmn at 11/03/2009 15:20 Post Edited by nmn at 11/05/2009 14:26
  21. hi, i have a list component in my report and it has its own datasource as subdataset. i need a main datasource value (ex: $F{context}) in my list component but i cant call it. is there a way to do it? Post Edited by nmn at 10/06/2009 08:21 Post Edited by nmn at 10/06/2009 08:22
  22. hi, i have a textfield with filling problem in my report. i'm filling that textfield with a text that has seperate lines. each line starts with "-----" characters. i am sending you output, my data that i send to the report(debug screenshot), and my jrxml lines that i declare the textfield. that is my output; http://img34.imageshack.us/img34/1826/outputb.png that is the screenshot from debuger; data is correct, there is no space in line, line is "-----eeeeeeeeeeeeeeee...". so where does that space come from? http://img406.imageshack.us/img406/6391/dataq.png and finally jrxml codes that i declare textfield; http://img34.imageshack.us/img34/9702/reportw.png i need your help, please help me i have tried my all but nothing has changed :) ty
  23. hahah, dont be angry with me teodor, sometimes my brain stops /tools/fckeditor/editor/images/smiley/msn/teeth_smile.gif. ok, i have solved my problem, i dont have a summary section anymore and problem solved. i really thank you.
  24. teodor, i dont understand creating fake group - fake title and summary sections. my problem still exists, can you give a little sample about the link you send?
×
×
  • Create New...