xychart_data.xaction 1.06 KB
Newer Older
Thitichaipun Wutthisak committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
<?xml version="1.0" encoding="UTF-8"?>
<action-sequence> 
  <title>Time Series Chart Example</title>
  <version>1</version>
  <logging-level>ERROR</logging-level>
  <documentation> 
    <author>Gretchen Moran</author>  
    <description>Sample executing the TimeSeries chart type</description>  
    <help/>  
    <result-type>chart</result-type>  
    <icon>folder.png</icon> 
  </documentation>

  <inputs/>

  <outputs> 
    <results type="result-set"/> 
  </outputs>

  <resources/>
  
  <actions> 
    <action-definition> 
      <component-name>SQLLookupRule</component-name>
      <action-type>Execute the Query to Gen an XY Series Dataset</action-type>
      <action-outputs> 
        <query-result type="result-set" mapping="results"/> 
      </action-outputs>
      <component-definition> 
        <jndi><![CDATA[datasource1]]></jndi>  
        <live><![CDATA[true]]></live>  
        <query><![CDATA[Select PRODUCTLINE, MSRP, BUYPRICE FROM PRODUCTS order by PRODUCTLINE]]></query>
      </component-definition> 
    </action-definition>
 
  </actions> 
</action-sequence>