<?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 do I edit a dashboard so that each panel has a different color? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-edit-a-dashboard-so-that-each-panel-has-a-different/m-p/435155#M28701</link>
    <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;Try like&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;panel&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel id="firstpanel"&amp;gt;
      &amp;lt;title&amp;gt;test1&amp;lt;/title&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index="_internal" |stats count by source&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;/search&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel id="secondpanel"&amp;gt;
      &amp;lt;title&amp;gt;test2&amp;lt;/title&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index="_internal" |stats count&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;/search&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
  &amp;lt;row depends="$hide$"&amp;gt;
    &amp;lt;html&amp;gt;
      &amp;lt;style&amp;gt;
        #secondpanel .dashboard-panel h2{
background:#3366ff !important;
color:white !important;
text-align: center !important;
font-weight: bold !important;
border-top-right-radius: 15px;
border-top-left-radius: 15px;
}

 #firstpanel .dashboard-panel h2{
background:#81ff33 !important;
color:white !important;
text-align: center !important;
font-weight: bold !important;
border-top-right-radius: 15px;
border-top-left-radius: 15px;
}
      &amp;lt;/style&amp;gt;
    &amp;lt;/html&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 30 Apr 2019 15:46:09 GMT</pubDate>
    <dc:creator>vnravikumar</dc:creator>
    <dc:date>2019-04-30T15:46:09Z</dc:date>
    <item>
      <title>How do I edit a dashboard so that each panel has a different color?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-edit-a-dashboard-so-that-each-panel-has-a-different/m-p/435154#M28700</link>
      <description>&lt;P&gt;I've tried the  property but it still shows the color across all panels (I assume this is because of the h2 property set).&lt;/P&gt;

&lt;P&gt;Also, what are the dashboard-panel options, i.e. h2, h3, etc?&lt;/P&gt;

&lt;P&gt;Below is an example.&lt;/P&gt;

&lt;P&gt;Thanks!&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;.dashboard-panel h2{
             background:#3366ff !important;
             color:white !important;
             text-align: center !important;
             font-weight: bold !important;
             border-top-right-radius: 15px;
             border-top-left-radius: 15px;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 30 Apr 2019 14:17:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-edit-a-dashboard-so-that-each-panel-has-a-different/m-p/435154#M28700</guid>
      <dc:creator>chrisschum</dc:creator>
      <dc:date>2019-04-30T14:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: How do I edit a dashboard so that each panel has a different color?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-edit-a-dashboard-so-that-each-panel-has-a-different/m-p/435155#M28701</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;Try like&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;panel&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel id="firstpanel"&amp;gt;
      &amp;lt;title&amp;gt;test1&amp;lt;/title&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index="_internal" |stats count by source&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;/search&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel id="secondpanel"&amp;gt;
      &amp;lt;title&amp;gt;test2&amp;lt;/title&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index="_internal" |stats count&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;/search&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
  &amp;lt;row depends="$hide$"&amp;gt;
    &amp;lt;html&amp;gt;
      &amp;lt;style&amp;gt;
        #secondpanel .dashboard-panel h2{
background:#3366ff !important;
color:white !important;
text-align: center !important;
font-weight: bold !important;
border-top-right-radius: 15px;
border-top-left-radius: 15px;
}

 #firstpanel .dashboard-panel h2{
background:#81ff33 !important;
color:white !important;
text-align: center !important;
font-weight: bold !important;
border-top-right-radius: 15px;
border-top-left-radius: 15px;
}
      &amp;lt;/style&amp;gt;
    &amp;lt;/html&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 30 Apr 2019 15:46:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-edit-a-dashboard-so-that-each-panel-has-a-different/m-p/435155#M28701</guid>
      <dc:creator>vnravikumar</dc:creator>
      <dc:date>2019-04-30T15:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: How do I edit a dashboard so that each panel has a different color?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-edit-a-dashboard-so-that-each-panel-has-a-different/m-p/435156#M28702</link>
      <description>&lt;P&gt;That worked like a champ! Thank you!!!&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2019 14:42:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-edit-a-dashboard-so-that-each-panel-has-a-different/m-p/435156#M28702</guid>
      <dc:creator>chrisschum</dc:creator>
      <dc:date>2019-05-01T14:42:33Z</dc:date>
    </item>
  </channel>
</rss>

