You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Next »

 plotSet overview

  

  The body of the plotSet tag is executed in the scope of plotter. The body can contain one "region" tag and one top-level "style" tag.

  Optional attribute "plots" that is a list of IManagedObjects to be plotted. Each object from the list is plotted in a separate plotter region. 

  There are optional plotSet attributes, with default values, e.g.:

        height = "600" (pixels)
        width  = "600" (pixels)
        format = "png"
        statusVar = "status" (object that keeps the current status of the loop: index, region, plots, ....)
        url = "" (The page to link the browser to)
        id = "" (The id for the browsing when multiple browsers are present in a page)
        allowDownload  = "true"
        createImageMap = "false"
        maxPlots = "9" (maximum number of plots per page)
       
        n Plots     nX x nY
          n<2         1x1
          n=2         1x2
      3<=n<5        2x2
      5<=n<7        2x3
      7<=n<10       3x3

Examples:

1. Very simple example - just plot using defaults

 <!-- plot set of IManagedObjects -->
<plotSet plots="${dataArray}" />

2. Set same style for all regions

<!--
    plot a set of IManagedObjects with a single
    plotter-level style
-->
<plotSet plots="${dataArray}">
    <style>
        .......
    </style>
</plotSet>

3. Set different styles for odd and even regions

<!--
    plot a set of IManagedObjects with a different
    region-level styles
-->
<plotSet statusVar="status">   <region>
    <c:choose>
        <c:when test="${status.index%2 == 0}">
            <style>
                .......
            </style>
        </c:when>
        <c:otherwise>
            <style>
                .......
            </style>
        </c:otherwise>
    </c:choose>   <plot var="${dataAray[status.index]}"/>   </region>
</plotSet>

4. Plot data with two overlays, each uses different style

<!--
    plot a set of IManagedObjects with overlays and
    individual data styles
-->
<plotSet statusVar="status">
    <style>
        .......
    </style>
   <region>
    <plot var="${dataArray1[status.index]}">
        <style>
            .......
        </style>
    </plot>
    <plot var="${dataArray2[status.index]}">
        <style>
            .......
        </style>
    </plot></region>
</plotSet>

5. Make regions clickable with unique href-s and styles

<!--
    plot a set of IManagedObjects with overlays.
    Make regions clickable and with unique styles.    *** Seems that we need to set "href" by-hand, since tag     *** itself knows only IManagedObjects, not paths to them
-->
<plotSet createImageMap="true" statusVar="status">    <region title = "Region ${status.index}" href = .... >
       <plot var="${dataArray1[status.index]}">
           <style>
               .......
           </style>
       </plot>
       <plot var="${dataArray2[status.index]}">
           <style>
               .......
           </style>
       </plot>    </region>
</plotSet>
  • No labels