*/
public FieldWidget addTitleField(int x, int width, String title) {
Section s = report.getFirstSectionByArea(SectionArea.PAGE_HEADER);
// Create the field.
Field f = Field.create(null, report, s, "text", title, true);
jimm.datavision.field.Rectangle b = f.getBounds();
b.setBounds(x, 0, width, Field.DEFAULT_HEIGHT);
// Make the field underlined and bold.
f.getFormat().setBold(true);
f.getFormat().setUnderline(true);
// Add the field to the report section.
s.addField(f);
// Create widget and add to section widget.