In Jasper Reports, is it possible to dynamically change the width or position of a column based on certain criteria?
For example, we have a report that contains the following columns:
ID | Name | Course | Status |
Now, there is an option to allow the report to only display a person's ID, as opposed to the ID and Name. If we make the name column null, we end up with a huge empty gap between the ID and Course columns:
ID |_____| Course | Status
Is it possible to programmatically reposition the remaining columns, so that they all shift up to the be next to the ID column?