Difference between revisions of "Format an iReport Template"

From IMSMA Wiki
Jump to: navigation, search
 
(3 intermediate revisions by 3 users not shown)
Line 53: Line 53:
 
*"Float": This value allows the element to "float" and will display the element relative to elements that come before it (i.e. closer to the top or closer to the left margins).  
 
*"Float": This value allows the element to "float" and will display the element relative to elements that come before it (i.e. closer to the top or closer to the left margins).  
  
Using the '''Float''' Position Type can help eliminate the overlapping that can occur when displaying multiple charts or cross tabs in a single report template.
+
Using the '''Float''' Position Type can help eliminate the overlapping that can happen when displaying multiple charts or cross tabs in a single report template.
  
 
===Stretch with Overflow===__NOEDITSECTION__
 
===Stretch with Overflow===__NOEDITSECTION__
 
Another useful formatting option is '''Stretch with Overflow'''. Setting this property means that the height of the field will adapt to the value, instead of the value being cut if it requires more space than available for the field.
 
Another useful formatting option is '''Stretch with Overflow'''. Setting this property means that the height of the field will adapt to the value, instead of the value being cut if it requires more space than available for the field.
 
* On the '''Properties''' pane tick the '''Stretch with Overflow''' element.  
 
* On the '''Properties''' pane tick the '''Stretch with Overflow''' element.  
*: [[Image:iReport_Format_Stretch_with_overflow|center|300px|''Stretch with Overflow'']]<div align="center">''Stretch with Overflow''</div>
+
*: [[Image:iReport_Format_Stretch_with_overflow.png|center|300px|''Stretch with Overflow'']]<div align="center">''Stretch with Overflow''</div>
  
 
==Formatting Tools==__NOEDITSECTION__
 
==Formatting Tools==__NOEDITSECTION__
Line 68: Line 68:
 
==Conditional Display==__NOEDITSECTION__
 
==Conditional Display==__NOEDITSECTION__
 
Sometimes it is important to change the display of some data extracted from IMSMA for the resulting report. For example, you want to change:
 
Sometimes it is important to change the display of some data extracted from IMSMA for the resulting report. For example, you want to change:
* the value “null” to “no”
+
* the value "null" to "no"
* the value “Male” to “Men”
+
* the value "Male" to "Men"
 
To do this, you use conditional statements in the element on the iReport.
 
To do this, you use conditional statements in the element on the iReport.
  
Line 76: Line 76:
 
# On the '''Properties''' pane select the '''Text Field Expression''' and open the '''Text Field Expression Editor'''.
 
# On the '''Properties''' pane select the '''Text Field Expression''' and open the '''Text Field Expression Editor'''.
 
#: [[Image:IReport Charts5.png|center|500px|''Text Field Expression Editor'']]<div align="center">''Text Field Expression Editor''</div>
 
#: [[Image:IReport Charts5.png|center|500px|''Text Field Expression Editor'']]<div align="center">''Text Field Expression Editor''</div>
# To change the way a particular field is displayed you can use basic "if-then-else" logic as in other [[Summarize i-Report Template Data#Variable Expressions|Variable Expressions]]. This follows the pattern:
+
# To change the way a particular field is displayed you can use basic "if-then-else" logic as in other [[Summarize iReport Template Data#Variable Expressions|Variable Expressions]]. This follows the pattern:
 
  $F{field} == null ? "Something" : $F{field}
 
  $F{field} == null ? "Something" : $F{field}
  
Line 88: Line 88:
  
 
{{NavBox HowTo Standardizing Data Analysis and Information Reporting}}
 
{{NavBox HowTo Standardizing Data Analysis and Information Reporting}}
[[Category:VIE]]
+
[[Category:NAA]]

Latest revision as of 20:29, 20 February 2020

iReport Designer provides many ways to format the appearance of an iReport template. These include the ability to:

  • add formatting elements to the iReport such as lines, rectangles, circles, etc
  • edit the position and size of elements on the iReport template relative to one another
  • change colors, fonts, and other properties
  • perform conditional displays based on data in the report

Adding Formatting Elements

Additional formatting elements can be added to the iReport template. These include lines, boxes, circles, etc. To add these elements to iReport template:

  1. Ensure that Palette pane is available. If not, on the Window menu, select Palette.
  2. Select the desired element and drag it to the iReport template.

Formatting iReport Elements

iReport Designer allows you to apply specific formatting to individual elements on an iReport template. Many of these elements can be edited graphically using Formatting Tools.

  1. Select the desired field or variable displayed in the iReport template (note: this is NOT the field or variable value itself in the iReport Designer, but rather the text element on the report displaying the field value)
    Display Properties
    Display Properties

Position and Size Elements

  • Left
  • Top
  • Width
  • Height

Colour

  • Forecolor
  • Backcolor
  • Opaque

Text Properties

iReport Designer allows you to set various properties for text elements displayed in the report template. These can be edited either with the text formatting bar (located on the same bar as the Designer, XML, and Preview buttons):

Text Formatting Bar
Text Formatting Bar

or with the Text properties portion of the Properties pane

Text Properties
Text Properties

Some examples of the properties you can edit are:

  • Font Name
  • Size
  • Bold/Italic
  • Horizontal and Vertical Alignment

Number and Date Specific Patterns

  • On the Properties pane select the Pattern element and open the Pattern Editor.
    Pattern Window
    Pattern Window
    • Choose an appropriate Pattern to apply to the field as desired.

Position Type

Because iReport elements can expand beyond their expected or allocated vertical space on the report template, elements can occasionally "collide" or overlap one another in the final report. To manage the potential conflict iReport provides the Position Type property on all elements.

Formatting Tools
Formatting Tools

The Position Type property has three options:

  • "Fix Relative to Top": This is the default value for all elements and means that the position will be kept relative to the top margin of the report regardless of what data is displayed before it.
  • "Fix Relative to Bottom": This value means that the position will be kept relative to the bottom margin of the report regardless of what data is displayed after it.
  • "Float": This value allows the element to "float" and will display the element relative to elements that come before it (i.e. closer to the top or closer to the left margins).

Using the Float Position Type can help eliminate the overlapping that can happen when displaying multiple charts or cross tabs in a single report template.

Stretch with Overflow

Another useful formatting option is Stretch with Overflow. Setting this property means that the height of the field will adapt to the value, instead of the value being cut if it requires more space than available for the field.

  • On the Properties pane tick the Stretch with Overflow element.
    Stretch with Overflow
    Stretch with Overflow

Formatting Tools

iReport Designer provides a variety of formatting tools for aligning, spacing, and sizing elements on the report template. These can be applied using the Formatting Tools pane.

  1. Ensure that Formatting Tools pane is available. If not, on the Window menu, select Formatting Tools.
    Formatting Tools
    Formatting Tools
  2. Select the desired element or elements (multiple elements can be selected by using the Control-click key combination) and apply the desired formatting choice.

Conditional Display

Sometimes it is important to change the display of some data extracted from IMSMA for the resulting report. For example, you want to change:

  • the value "null" to "no"
  • the value "Male" to "Men"

To do this, you use conditional statements in the element on the iReport.

  1. Select the desired field or variable displayed in the iReport template (note: this is NOT the field or variable value itself in the iReport Designer, but rather the text element on the report displaying the field or variable value).
    Display Properties
    Display Properties
  2. On the Properties pane select the Text Field Expression and open the Text Field Expression Editor.
    Text Field Expression Editor
    Text Field Expression Editor
  3. To change the way a particular field is displayed you can use basic "if-then-else" logic as in other Variable Expressions. This follows the pattern:
$F{field} == null ? "Something" : $F{field}

Or nested:

$F{field} == null ? "Something" : $F{field} == "SomethingElse" ? "Something Else" : $F{field}
Note.jpg The type of field is important (string, float, double, int, date). Stick with strings if you can.

Example:

$F{blockWater} == null ? "No value" : $F{blockWater}