Not that familiar on how to set it. This is what I came up with but I was unable to set it up properly: <form theme="dark">
<label>CSC/ERSC/PSI_MSTOR Report</label>
<fieldset submitButton="true" autoRun="false">
<input type="dropdown" token="select">
<label>Select to View</label>
<choice value="*-------*">*-------*</choice>
<choice value="D7X0">D7X0</choice>
<choice value="H7X0">H7X0</choice>
<choice value="D1D0">D1D0</choice>
<choice value="DAD0">DAD0</choice>
<choice value="E1D0">E1D0</choice>
<choice value="H1D0">H1D0</choice>
<choice value="WSYS">WSYS</choice>
<choice value="YSYS">YSYS</choice>
<default>*-------*</default>
</input>
<input type="text" token="from">
<label>From MM/DD/YYYY</label>
<default>03/01/2022</default>
</input>
<input type="text" token="to">
<label>To MM/DD/YYYY</label>
<default>03/31/2022</default>
</input>
</fieldset>
<row>
<panel>
<title>Check select ($select$) from dropdown. Check max ($max$) as hidden value</title>
<chart>
<title>Area Chart - $select$ $from$ - $to$</title>
<search>
<query>index=mainframe-platform
sourcetype="mainframe:mstor"
MVS_SYSTEM_ID=$select$
| eval DATE=strftime(strptime(DATE,"%d%b%Y"),"%Y-%m-%d")
| eval _time=strptime(DATE." ","%Y-%m-%d")
| where _time >= strptime("$from$", "%m/%d/%Y") AND _time <= strptime("$to$", "%m/%d/%Y")
| chart avg(CSAVG_AVAIL_MB) as "CSAVG_AVAIL_MB: $select$" first(CSMIN_AVAIL_MB) as "CSMIN_AVAIL_MB: $select$" over HOUR</query>
<earliest>0</earliest>
<latest></latest>
</search>
<option name="charting.axisLabelsY.majorUnit">3000</option>
<option name="charting.axisLabelsY2.majorUnit">2000</option>
<option name="charting.axisTitleY2.text">CSMIN_AVAIL_MB: $lpar$</option>
<option name="charting.axisY.maximumNumber">$max$</option>
<option name="charting.axisY.minimumNumber">3000</option>
<option name="charting.axisY.scale">linear</option>
<option name="charting.axisY2.enabled">0</option>
<option name="charting.axisY2.maximumNumber">$max$</option>
<option name="charting.axisY2.minimumNumber">0</option>
<option name="charting.axisY2.scale">linear</option>
<option name="charting.chart">area</option>
<option name="charting.chart.overlayFields">"CSAVG_AVAIL_MB: E1D0","CSAVG_AVAIL_MB: D1D0","CSAVG_AVAIL_MB: DAD0","CSAVG_AVAIL_MB: H1D0","CSAVG_AVAIL_MB: H7X0","CSAVG_AVAIL_MB: D7X0","CSAVG_AVAIL_MB: WSYS","CSAVG_AVAIL_MB: XSYS"</option>
<option name="charting.drilldown">none</option>
<option name="charting.legend.placement">top</option>
<option name="charting.seriesColors">[DA171E,E6FFFF]</option>
<option name="height">617</option>
<option name="refresh.display">progressbar</option>
</chart>
</panel>
</row>
... View more