<?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: Change Background Color of Water Gauge? in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Change-Background-Color-of-Water-Gauge/m-p/409125#M49935</link>
    <description>&lt;P&gt;Absolutely perfect! Thank you so much!&lt;/P&gt;</description>
    <pubDate>Mon, 20 Aug 2018 01:39:34 GMT</pubDate>
    <dc:creator>Ginzoa</dc:creator>
    <dc:date>2018-08-20T01:39:34Z</dc:date>
    <item>
      <title>Change Background Color of Water Gauge?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Change-Background-Color-of-Water-Gauge/m-p/409123#M49933</link>
      <description>&lt;P&gt;Hello! I have been trying to figure this out the whole day with zero success.&lt;/P&gt;

&lt;P&gt;I want to change the background color of my Water Gauge (from white to black)&lt;/P&gt;

&lt;P&gt;I have it like this:&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/5571iE17B97FC7E297711/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;And I want something like this:&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/5572i512FF3C25BDC6C6A/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;I have tried this with HTML:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;.highcharts-container {
     background: #000000 !important;
}
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and also tried this with XML:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;option name="water_gauge.gauge.bgColor"&amp;gt;#000000&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;But none of them worked&lt;/P&gt;

&lt;P&gt;Can someone guide me a little bit more, please?&lt;/P&gt;

&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 15 Aug 2018 11:13:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Change-Background-Color-of-Water-Gauge/m-p/409123#M49933</guid>
      <dc:creator>Ginzoa</dc:creator>
      <dc:date>2018-08-15T11:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: Change Background Color of Water Gauge?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Change-Background-Color-of-Water-Gauge/m-p/409124#M49934</link>
      <description>&lt;P&gt;@Ginzoa while you can request the app developer directly for that enhancement for background color to be available as an option.&lt;/P&gt;

&lt;P&gt;If you want you can use following CSS override where &lt;CODE&gt;myWaterGauge&lt;/CODE&gt; is the Water Gauge id and &lt;CODE&gt;myPanel&lt;/CODE&gt; is panel id.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;          #myWaterGauge svg, #myPanel.dashboard-panel{
            background: black !important;
          }
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Following is a run anywhere example for you to try out and confirm!&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/5570iBEA06B3B8EF3EE5B/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Following is the Simple XML code:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;Water gauge Background Color&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel id="myPanel"&amp;gt;
      &amp;lt;html&amp;gt;
        &amp;lt;style&amp;gt;
          #myWaterGauge svg, #myPanel.dashboard-panel{
            background: black !important;
          }
          #myPanel h3{
            color: #178BCA !important;
          }
        &amp;lt;/style&amp;gt;
      &amp;lt;/html&amp;gt;
      &amp;lt;viz id="myWaterGauge" type="cuviz_water_gauge.water_gauge"&amp;gt;
        &amp;lt;title&amp;gt;Most Active Splunkd Component&amp;lt;/title&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index=_internal sourcetype=splunkd log_level=INFO
| top 1 component showcount=f
| fields percent&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;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.enabled"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.scales.shared"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.size"&amp;gt;medium&amp;lt;/option&amp;gt;
      &amp;lt;/viz&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>Wed, 15 Aug 2018 13:45:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Change-Background-Color-of-Water-Gauge/m-p/409124#M49934</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-08-15T13:45:41Z</dc:date>
    </item>
    <item>
      <title>Re: Change Background Color of Water Gauge?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Change-Background-Color-of-Water-Gauge/m-p/409125#M49935</link>
      <description>&lt;P&gt;Absolutely perfect! Thank you so much!&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 01:39:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Change-Background-Color-of-Water-Gauge/m-p/409125#M49935</guid>
      <dc:creator>Ginzoa</dc:creator>
      <dc:date>2018-08-20T01:39:34Z</dc:date>
    </item>
  </channel>
</rss>

