private Report createBlankReport() {
    Report newReport = new Report();

    newReport.setName(
        it.businesslogic.ireport.util.I18n.getString("untitledReport", "untitled_report_") + "1");
    newReport.setUsingMultiLineExpressions(false); // this.isUsingMultiLineExpressions());
    newReport.setWidth(PageSize.A4.x);
    newReport.setHeight(PageSize.A4.y);
    newReport.setTopMargin(20);
    newReport.setLeftMargin(30);
    newReport.setRightMargin(30);
    newReport.setBottomMargin(20);
    newReport.setColumnCount(1);
    newReport.setColumnWidth(
        newReport.getWidth() - newReport.getLeftMargin() - newReport.getRightMargin());
    newReport.setColumnSpacing(0);

    return newReport;
  }