DynamicJasper icon indicating copy to clipboard operation
DynamicJasper copied to clipboard

Dynamic Reports using Jasper Reports

Results 46 DynamicJasper issues
Sort by recently updated
recently updated
newest added

If i want to put a line break in the title, I thought you could use the 'markup' type of style from jasper reports: ```` .setTitle("Line 1Line2") ```` But this...

hi, i have a problem with dynamicJasper. when i add dynamicJasper to my project with gradle using like: compile group: 'ar.com.fdvs', name: 'DynamicJasper', version: '5.0.10' the downloaded library has not...

Can someone explain me why ConditionStyles not working if we first generate JasperReport from DynamicReport and later fill report and create JasperPrint object? In ConditionalStyleReportTest2 report is generated by: ```java...

Recently JasperReports bumped its version to 7 introducing major refactoring (rearranged packages etc) see also https://github.com/TIBCOSoftware/jasperreports At the moment DynamicJasper is not compatible with the latest major version. Do you...

By adding some text like this: ``` DynamicReportBuilder dynamicReportBuilder = new DynamicReportBuilder(); dynamicReportBuilder.setPageSizeAndOrientation(Page.Page_A4_Portrait()) AutoText autoText = new AutoText("Header 1\\nHeader2\\n", AutoText.POSITION_HEADER, HorizontalBandAlignment.LEFT, 480); autoText.setStyle(...); dynamicReportBuilder.addAutoText(autoText); ``` Both lines are printed. This...

I have a list of data retrieved from a database that contains a lot of redundancy. The data includes fields such as user, users access groups, access levels within each...