The fp:cells tag must contain more than zero tags, and the number of tags must be a multiple of the number of columns specified by the cols attribute. For example, if you have three columns, the number of tags must be a number that is a multiple of three.
<fp:cells cols="30,40,30" <fp:chart ... /> <fp:chart ... /> <fp:chart ... /> <fp:chart ... /> <fp:chart ... /> <fp:chart ... /> />
Tag | Description | Attributes | Example |
---|---|---|---|
chartType | A mandatory tag of type chartType that determines the chart type, such as a bar chart or an XY chart. |
|
<fp:chartType changeable="template" id="2" name="chartType" descr="Type of chart" defaultvalue="bar" /> |
The pwcDomain tags specify the criterion-member
tuples that are displayed in a chart. These tags are of type pwcDomain.
You must use at least one pwcDomain tag. The set of pwcDomain tags
needed is determined by the chart type:
|
|
<fp:pwcDomain changeable="template" charttypeid="2" id="9" masterid="1" name="x" descr="The X axis" allmembersid="99" /> |
|
viewId | A mandatory tag of type viewParam that contains a view ID. | ||
fp:chartfilter | Stacked XY charts and stacked bar charts that
are generated as quick reports use the X, Y, and sector selections
on screen. By default, the normal reports select all X, Y, and sector
check boxes. By using fp:chartfilter tags, you can change the set
of selected check boxes for normal reports. You can find the values
of the tags in one of the following ways:
|
<fp:chart ...> ... <fp:chartfilter name="x" value="16/10" /> <fp:chartfilter name="y" value="162" /> <fp:chartfilter name="z" value="162,16/10"/> ... </fp:chart> |
|
allMembers | An optional tag of type checkboxParam that determines which priorities are included: all members' priorities or the currently logged in member's priorities. The default value is false (only the current member's priorities are included). | ||
chartSize | An optional tag of type chartSize that determines the size of the chart. |
|
<fp:chartSize changeable="template" id="3" name="chartSize" descr="Size of chart" defaultvalue="small" /> |
chartSorting | An optional tag of type chartSorting that determines the sort order in the chart. This tag is applicable for bar charts and stacked bar charts only. |
|
<fp:chartSorting changeable="template" charttypeid="2" id="4" name="chartSorting" descr="Sorting" defaultvalue="bestatbottom" /> |
disagree | An optional tag of type checkboxParam that determines whether disagreement is presented in a chart. This tag is applicable to stacked bar charts only. The default value is false (no disagreement indicator). | ||
prefix | An optional tag of type checkboxParam that determines whether prefixes are presented in the chart. The default value is true. | ||
title | An optional tag of type checkboxParam that determines whether titles are presented in the chart. The default value is true. |
<fp:chart descr="A chart" id="430"> <fp:viewParam name="viewId" descr="The view that contains the elements" changeable="template" id="1" /> <fp:chartType name="chartType" descr="Type of chart" changeable="template" id="2" defaultvalue="xy" /> <fp:chartSize name="chartSize" descr="Size of chart" changeable="template" id="3" defaultvalue="small" /> <fp:chartSorting name="chartSorting" descr="Sorting" changeable="template" id="4" charttypeid="2" defaultvalue="bestattop" /> <fp:checkboxParam name="allMembers" descr="Use all members' prioritizations" changeable="template" defaultvalue="false" id="5" /> <fp:checkboxParam name="disagree" descr="Show disagreement in stacked bar" changeable="template" defaultvalue="false" id="6" /> <fp:checkboxParam name="prefix" descr="Show element prefix" changeable="template" defaultvalue="false" id="7" /> <fp:checkboxParam name="title" descr="Show element titles" changeable="template" defaultvalue="true" id="8" /> <fp:pwcDomain name="x" descr="X axis" changeable="template" id="9" charttypeid="2" masterid="1" allmembersid="5" /> <fp:pwcDomain name="y" descr="Y axis" changeable="template" id="10" charttypeid="2" masterid="1" allmembersid="5" /> <fp:pwcDomain name="z" descr="Z axis" changeable="template" id="11" charttypeid="2" masterid="1" allmembersid="5" /> </fp:chart>
The fp:priority list component uses the common attributes and the common tags, and also uses one mandatory tag, viewId. The viewId tag is of type viewParam and contains a view ID.
<fp:prioritylist descr="A priority list" id="430"> <fp:viewParam name="viewId" descr="The view that contains the elements" changeable="template" id="1" /> </fp:prioritylist>