Hello @mbasharat, I've found a workaround by using the "where" command before a panel subsearch. Example in your case : ...
<panel>
<title>Events Timechart</title>
<chart>
<search base="Main_Search">
<query>where _time>=$timerange.earliest$ AND _time<=$timerange.latest$
| search UserType="$accttype$" AND User="$user$" AND Priority="$priority$" AND Result="$results$"
| timechart count</query>
</search>
... Try to add in you query : "where _time>=$timerange.earliest$ AND _time<=$timerange.latest$" Unfortunately, for timelines per example, I noticed that the display do not automatically scale the panel to the dashboard time range but the data that appears does match it. Regards, Manyl
... View more