A script-enabled browser is required for this page to function properly.

<matrixCol> XML tag

The <matrixCol> tag delimits the column fields in a matrix style layout. The <matrixCol> tag can only be nested within a <matrix> tag. You must nest <field> tags within the <matrixCol> tag to list the fields you want to include as matrix columns.

Syntax

<matrixCol> 
  master_group_content
</matrixol>

Examples

The following example shows a segment of an XML report definition that defines the column dimension of a matrix layout:

<matrixCol name="g_city">
  <field name="f_city" source="city" 
    label="City: "
    font="Arial" fontSize="8" textColor="yellow"
    formatTrigger="F_cityFormatTrigger"/>
  <field name="f_SumTOTAL_SALESPerCITY" 
    source="SumTOTAL_SALESPerCITY"
    label="Sales: " font="Arial" fontSize="8" 
    fontStyle="bold"
    textColor="yellow" formatMask="LNNNGNNNGNNNGNN0D00">
    <labelAttribute font="Arial" fontSize="8" 
      fontStyle="bold" textColor="yellow"/>
  </field>
  <field name="f_SumTOTAL_COSTPerCITY" 
    source="SumTOTAL_COSTPerCITY"
    label="Sales: " font="Arial" fontSize="8" 
    fontStyle="bold"
    textColor="yellow" formatMask="LNNNGNNNGNNNGNN0D00">
    <labelAttribute font="Arial" fontSize="8" 
      fontStyle="bold" textColor="yellow"/>
  </field>
  <field name="f_SumTOTAL_PROFITPerCITY" 
    source="SumTOTAL_PROFITPerCITY"
    label="Sales: " font="Arial" fontSize="8" 
    fontStyle="bold"
    textColor="yellow" formatMask="LNNNGNNNGNNNGNN0D00">
    <labelAttribute font="Arial" fontSize="8" 
      fontStyle="bold" textColor="yellow"/>
  </field>
</matrixCol>

See also

About XML in reports

Oracle Reports XML tags