So We can not add Gauge or any other panel to the same row as that of input dropdown ? My source code is : <form theme="dark"> <label>SampleDashboard</label> <fieldset submitButton="false"> <input type="text" token="number" searchWhenChanged="true"> <label>Number</label> </input> <input type="dropdown" token="number"> <label>field1</label> <choice value="30">test1</choice> <choice value="50">test2</choice> <choice value="60">test3</choice> <choice value="90">test4</choice> </input> </fieldset> <row> <panel> <chart> <search> <query>|makeresults |eval value=$number$ | table value</query> <earliest>-24h@h</earliest> <latest>now</latest> <progress> <eval token="gaugecolor">if($result.value$ == "100","#006600","0xffe800,0xbf3030")</eval> <eval token="gaugerange">if($result.value$ == "100","0,100","0,".$number$.",100")</eval> </progress> </search> <option name="charting.chart">radialGauge</option> <option name="refresh.display">progressbar</option> <option name="charting.chart.rangeValues">[$gaugerange$]</option> <option name="charting.gaugeColors">[$gaugecolor$]</option> </chart> </panel> </row> </form>
... View more