javajasper-reportsdynamic-jasper

How to suppress the display of column header(s) in DynamicJasper?


Using DynamicJasper and FastReportBuilder is it possible to suppress the display of column header(s)?


Solution

  • setPrintColumnNames(false)

    When FALSE, no column names are printed (in the header band)

    Example

    FastReportBuilder drb = new FastReportBuilder();
    frb.setPrintColumnNames(false);
    

    Note: FastReportBuilder inherited method from DynamicReportBuilder since it extends it.