Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

        height = "600" (pixels)
        width  = "600" (pixels)
        format = "png"
        indexVar var = "index"
        regionVar = "regionstatus"
        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

...

Code Block
<!--
    plot a set of IManagedObjects with a different
    region-level styles
-->
<plotSet plots="${dataArray}" indexVarvar="indexstatus">
    <c:choose>
        <c:when test="${status.index%2 == 0}">
            <style>
                .......
            </style>
        </c:when>
        <c:otherwise>
            <style>
                .......
            </style>
        </c:otherwise>
    </c:choose>
</plotSet>

...

Code Block
<!--
    plot a set of IManagedObjects with overlays and
    individual data styles
-->
<plotSet plots="${dataArray}" indexVarvar="indexstatus">
    <style>
        .......
    </style>

    <plot var="${dataArray1[status.index]}">
        <style>
            .......
        </style>
    </plot>
    <plot var="${dataArray2[status.index]}">
        <style>
            .......
        </style>
    </plot>
</plotSet>

...

Code Block
<!--
    plot a set of IManagedObjects with overlays.
    Make regions clickable and with unique styles.
    *** FIXME: don't know how to call setters on an Object!
-->
<plotSet plots="${dataArray}" createImageMap="true" indexVarvar="index" regionVar="regionstatus">
    set<region region.title = "Region ${status.index}"
    set region.href = .... >

       <plot var="${dataArray1[status.index]}">
           <style>
               .......
           </style>
       </plot>
       <plot var="${dataArray2[status.index]}">
           <style>
               .......
           </style>
       </plot>    </region>
</plotSet>