Versions Compared

Key

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

...

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

        height = 400 or 300200*nX (pixels)
        width  = 600 or 200300*nY (pixels)
        format = "png"
        statusVar = "status" (name of the variable that keeps PlotSetStatus object with the current status of the loop: index, plots, ....)
        allowDownload  = "true"
        createImageMap = "false"
        maxPlots = "9" (maximum number of plots per page)
        layout = "" (plot layout, must be in the form of nX x nY)

...

Code Block
<!--
    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>