<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to blur/grey out the some particular panel based on the panel result ? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-blur-grey-out-the-some-particular-panel-based-on-the/m-p/493129#M32309</link>
    <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;Check this, &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;singlecolor&amp;lt;/label&amp;gt;
  &amp;lt;row depends="$hide$"&amp;gt;
    &amp;lt;html&amp;gt;
      &amp;lt;style&amp;gt;
       #$blur${
           -webkit-filter: blur(5px);
            background-color: #ccc;
        }
      &amp;lt;/style&amp;gt;
    &amp;lt;/html&amp;gt;
  &amp;lt;/row&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;single id="rk"&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| makeresults 
| eval value=0
| table value&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
          &amp;lt;done&amp;gt;
            &amp;lt;condition match="'result.value' ==&amp;amp;quot;0&amp;amp;quot;"&amp;gt;
              &amp;lt;set token="blur"&amp;gt;rk&amp;lt;/set&amp;gt;
            &amp;lt;/condition&amp;gt;
            &amp;lt;condition&amp;gt;
              &amp;lt;unset token="blur"&amp;gt;&amp;lt;/unset&amp;gt;
            &amp;lt;/condition&amp;gt;
          &amp;lt;/done&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
      &amp;lt;/single&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 11 May 2020 10:11:56 GMT</pubDate>
    <dc:creator>vnravikumar</dc:creator>
    <dc:date>2020-05-11T10:11:56Z</dc:date>
    <item>
      <title>How to blur/grey out the some particular panel based on the panel result ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-blur-grey-out-the-some-particular-panel-based-on-the/m-p/493126#M32306</link>
      <description>&lt;P&gt;I want to grey out or blur of some panel based on the single value result.&lt;BR /&gt;
If the single value result is '0' ,It should show in grey out or in blur (Not to hide) the panel. &lt;/P&gt;

&lt;P&gt;Please help.&lt;BR /&gt;
Thanks In Advance.&lt;/P&gt;</description>
      <pubDate>Mon, 11 May 2020 03:16:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-blur-grey-out-the-some-particular-panel-based-on-the/m-p/493126#M32306</guid>
      <dc:creator>patra966</dc:creator>
      <dc:date>2020-05-11T03:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to blur/grey out the some particular panel based on the panel result ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-blur-grey-out-the-some-particular-panel-based-on-the/m-p/493127#M32307</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;Check this sample and let me know&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;singlecolor&amp;lt;/label&amp;gt;
  &amp;lt;row depends="$hide$"&amp;gt;
    &amp;lt;html&amp;gt;
      &amp;lt;style&amp;gt;
       #$blur${
           -webkit-filter: blur(5px);
            background-color: #ccc;
        }
      &amp;lt;/style&amp;gt;
    &amp;lt;/html&amp;gt;
  &amp;lt;/row&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;single id="rk"&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| makeresults 
| eval value=20
| table value |where value!=20&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
          &amp;lt;done&amp;gt;
            &amp;lt;condition match="'job.resultCount' ==0"&amp;gt;
              &amp;lt;set token="blur"&amp;gt;rk&amp;lt;/set&amp;gt;
            &amp;lt;/condition&amp;gt;
            &amp;lt;condition&amp;gt;
              &amp;lt;unset token="blur"&amp;gt;&amp;lt;/unset&amp;gt;
            &amp;lt;/condition&amp;gt;
          &amp;lt;/done&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
      &amp;lt;/single&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 11 May 2020 07:15:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-blur-grey-out-the-some-particular-panel-based-on-the/m-p/493127#M32307</guid>
      <dc:creator>vnravikumar</dc:creator>
      <dc:date>2020-05-11T07:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to blur/grey out the some particular panel based on the panel result ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-blur-grey-out-the-some-particular-panel-based-on-the/m-p/493128#M32308</link>
      <description>&lt;P&gt;Hi @vnravikumar ,&lt;/P&gt;

&lt;P&gt;Thanks for the information. &lt;/P&gt;

&lt;P&gt;If the result is : "No result found", then only it's working fine. &lt;/P&gt;

&lt;P&gt;| makeresults &lt;BR /&gt;
 | eval value=0&lt;BR /&gt;
 | table value |where value!=20&lt;BR /&gt;
But If the result is: "0", it's not working. &lt;/P&gt;

&lt;P&gt;If single value is 0 then only, panel need to be blur.&lt;/P&gt;</description>
      <pubDate>Mon, 11 May 2020 09:16:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-blur-grey-out-the-some-particular-panel-based-on-the/m-p/493128#M32308</guid>
      <dc:creator>patra966</dc:creator>
      <dc:date>2020-05-11T09:16:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to blur/grey out the some particular panel based on the panel result ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-blur-grey-out-the-some-particular-panel-based-on-the/m-p/493129#M32309</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;Check this, &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;singlecolor&amp;lt;/label&amp;gt;
  &amp;lt;row depends="$hide$"&amp;gt;
    &amp;lt;html&amp;gt;
      &amp;lt;style&amp;gt;
       #$blur${
           -webkit-filter: blur(5px);
            background-color: #ccc;
        }
      &amp;lt;/style&amp;gt;
    &amp;lt;/html&amp;gt;
  &amp;lt;/row&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;single id="rk"&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| makeresults 
| eval value=0
| table value&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
          &amp;lt;done&amp;gt;
            &amp;lt;condition match="'result.value' ==&amp;amp;quot;0&amp;amp;quot;"&amp;gt;
              &amp;lt;set token="blur"&amp;gt;rk&amp;lt;/set&amp;gt;
            &amp;lt;/condition&amp;gt;
            &amp;lt;condition&amp;gt;
              &amp;lt;unset token="blur"&amp;gt;&amp;lt;/unset&amp;gt;
            &amp;lt;/condition&amp;gt;
          &amp;lt;/done&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
      &amp;lt;/single&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 11 May 2020 10:11:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-blur-grey-out-the-some-particular-panel-based-on-the/m-p/493129#M32309</guid>
      <dc:creator>vnravikumar</dc:creator>
      <dc:date>2020-05-11T10:11:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to blur/grey out the some particular panel based on the panel result ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-blur-grey-out-the-some-particular-panel-based-on-the/m-p/493130#M32310</link>
      <description>&lt;P&gt;Hi @vnravikumar ,&lt;/P&gt;

&lt;P&gt;Thanks. The above one is working fine as my expectation.&lt;/P&gt;

&lt;P&gt;Thanks for your help. &lt;/P&gt;</description>
      <pubDate>Mon, 11 May 2020 10:39:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-blur-grey-out-the-some-particular-panel-based-on-the/m-p/493130#M32310</guid>
      <dc:creator>patra966</dc:creator>
      <dc:date>2020-05-11T10:39:21Z</dc:date>
    </item>
  </channel>
</rss>

