<?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 How to change the width of panels in xml? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289203#M18309</link>
    <description>&lt;P&gt;Hi Guys,&lt;/P&gt;

&lt;P&gt;On a row of my dashboard, I have a single value, statistics table and line chart. How can I make the width of the  single value to 25%, statistics table to 30% and line chart to 45% of the total width in xml?&lt;/P&gt;

&lt;P&gt;Thanks a lot!&lt;/P&gt;</description>
    <pubDate>Mon, 26 Mar 2018 12:09:47 GMT</pubDate>
    <dc:creator>auaave</dc:creator>
    <dc:date>2018-03-26T12:09:47Z</dc:date>
    <item>
      <title>How to change the width of panels in xml?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289203#M18309</link>
      <description>&lt;P&gt;Hi Guys,&lt;/P&gt;

&lt;P&gt;On a row of my dashboard, I have a single value, statistics table and line chart. How can I make the width of the  single value to 25%, statistics table to 30% and line chart to 45% of the total width in xml?&lt;/P&gt;

&lt;P&gt;Thanks a lot!&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2018 12:09:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289203#M18309</guid>
      <dc:creator>auaave</dc:creator>
      <dc:date>2018-03-26T12:09:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the width of panels in xml?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289204#M18310</link>
      <description>&lt;P&gt;Splunk distributes the width evenly automatically and you can't change it using XML. The only way to customize is with a JavaScript file.&lt;/P&gt;

&lt;P&gt;This app might help: &lt;A href="https://splunkbase.splunk.com/app/1603/"&gt;https://splunkbase.splunk.com/app/1603/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2018 12:51:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289204#M18310</guid>
      <dc:creator>kmaron</dc:creator>
      <dc:date>2018-03-26T12:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the width of panels in xml?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289205#M18311</link>
      <description>&lt;P&gt;@auaave, if you can add &lt;CODE&gt;id&lt;/CODE&gt; to each of your panels you can use CSS override to adjust the panel width. For example &lt;CODE&gt;&amp;lt;panel id="errorSinglePanel"&amp;gt;,&amp;lt;panel id="errorStatsPanel"&amp;gt;, &amp;lt;panel id="errorLineChartPanel"&amp;gt;&lt;/CODE&gt; then following CSS should do the trick&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;panel depends="$alwaysHideCSS$"&amp;gt;
  &amp;lt;html&amp;gt;
    &amp;lt;style&amp;gt;
      #errorSinglePanel{
        width:25% !important;
      }
      #errorStatsPanel{
        width:30% !important;
      }
      #errorLineChartPanel{
        width:45% !important;
      }
    &amp;lt;/style&amp;gt;
  &amp;lt;/html&amp;gt;
&amp;lt;/panel&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Consider the following run any where dashboard example to test out:&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/4620i2D93905892F5F196/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 Simple XML code:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;Adjust Width of Panels in Dashboard&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="time" token="tokTime" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Select Time&amp;lt;/label&amp;gt;
      &amp;lt;default&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;/default&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel depends="$alwaysHideCSS$"&amp;gt;
      &amp;lt;html&amp;gt;
        &amp;lt;style&amp;gt;
          #errorSinglePanel{
            width:25% !important;
          }
          #errorStatsPanel{
            width:30% !important;
          }
          #errorLineChartPanel{
            width:45% !important;
          }
        &amp;lt;/style&amp;gt;
      &amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
    &amp;lt;panel id="errorSinglePanel"&amp;gt;
      &amp;lt;title&amp;gt;Splunkd Errors (Single Value)&amp;lt;/title&amp;gt;
      &amp;lt;single&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index=_internal sourcetype=splunkd log_level!=INFO
| timechart count&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;$tokTime.earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$tokTime.latest$&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="colorBy"&amp;gt;trend&amp;lt;/option&amp;gt;
        &amp;lt;option name="colorMode"&amp;gt;block&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="numberPrecision"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="showSparkline"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="showTrendIndicator"&amp;gt;1&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;option name="trendColorInterpretation"&amp;gt;inverse&amp;lt;/option&amp;gt;
        &amp;lt;option name="trendDisplayMode"&amp;gt;absolute&amp;lt;/option&amp;gt;
        &amp;lt;option name="unitPosition"&amp;gt;after&amp;lt;/option&amp;gt;
        &amp;lt;option name="useColors"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="useThousandSeparators"&amp;gt;1&amp;lt;/option&amp;gt;
      &amp;lt;/single&amp;gt;
    &amp;lt;/panel&amp;gt;
    &amp;lt;panel id="errorStatsPanel"&amp;gt;
      &amp;lt;title&amp;gt;Top 5 Error (Stats)&amp;lt;/title&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index=_internal sourcetype=splunkd log_level!=INFO
| top 5 component showperc=false&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;$tokTime.earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$tokTime.latest$&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="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
    &amp;lt;panel id="errorLineChartPanel"&amp;gt;
      &amp;lt;title&amp;gt;Splunkd Errors (Timechart)&amp;lt;/title&amp;gt;
      &amp;lt;chart&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index=_internal sourcetype=splunkd log_level!=INFO
| timechart count&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;$tokTime.earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$tokTime.latest$&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="charting.chart"&amp;gt;line&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.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;/chart&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 26 Mar 2018 13:28:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289205#M18311</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-03-26T13:28:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the width of panels in xml?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289206#M18312</link>
      <description>&lt;P&gt;Wow. That's awesome.  &lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2018 13:49:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289206#M18312</guid>
      <dc:creator>kmaron</dc:creator>
      <dc:date>2018-03-26T13:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the width of panels in xml?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289207#M18313</link>
      <description>&lt;P&gt;@kmaron, yup having an option to override CSS using hidden html panels in Simple XML Dashboard does allow the flexibility of avoiding static file dependency and implies changes would reflect immediately without Splunk Admin dependency and refresh of Splunk environment. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2018 13:57:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289207#M18313</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-03-26T13:57:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the width of panels in xml?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289208#M18314</link>
      <description>&lt;P&gt;I was always told that the CSS would be overwritten so JavaScript was the only way.  This has totally made my day!&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2018 13:59:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289208#M18314</guid>
      <dc:creator>kmaron</dc:creator>
      <dc:date>2018-03-26T13:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the width of panels in xml?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289209#M18315</link>
      <description>&lt;P&gt;Thanks a lot @niketnilay!! This is great! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Mar 2018 00:22:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289209#M18315</guid>
      <dc:creator>auaave</dc:creator>
      <dc:date>2018-03-27T00:22:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the width of panels in xml?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289210#M18316</link>
      <description>&lt;P&gt;thanks kamaron &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Mar 2018 00:23:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289210#M18316</guid>
      <dc:creator>auaave</dc:creator>
      <dc:date>2018-03-27T00:23:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the width of panels in xml?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289211#M18317</link>
      <description>&lt;P&gt;Is it possible to adjust the height of some panels in same dashboard ?&lt;/P&gt;</description>
      <pubDate>Fri, 09 Nov 2018 00:47:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289211#M18317</guid>
      <dc:creator>sainudaniel</dc:creator>
      <dc:date>2018-11-09T00:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the width of panels in xml?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289212#M18318</link>
      <description>&lt;P&gt;Thank you.That is wonderful.&lt;BR /&gt;
The same way, is there an option to adjust the height of a panel?&lt;/P&gt;</description>
      <pubDate>Fri, 09 Nov 2018 00:51:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289212#M18318</guid>
      <dc:creator>sainudaniel</dc:creator>
      <dc:date>2018-11-09T00:51:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the width of panels in xml?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289213#M18319</link>
      <description>&lt;P&gt;@sainudaniel, there are couple of options:&lt;/P&gt;

&lt;P&gt;1) Simple XML chart configuration allows option name &lt;CODE&gt;height&lt;/CODE&gt; for charts (not table). &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;     &amp;lt;option name="height"&amp;gt;400&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Using this approach if you increase the height of one panel other panels in the same row will adjust automatically. If you reduce you would need to reduce for all panels in the same row or else remaining will take height of biggest panel in the row. Refer to Splunk Documentation: &lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/Viz/ChartConfigurationReference#General_chart_properties"&gt;https://docs.splunk.com/Documentation/Splunk/latest/Viz/ChartConfigurationReference#General_chart_properties&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;2) Use CSS Selector for each panel in the row, you can set height directly. PS: &lt;CODE&gt;min-height&lt;/CODE&gt; would need to be reduced for panel in case you need to reduce the height. &lt;BR /&gt;
Here is an example in Trellis Layout for finding CSS selector for override: &lt;A href="https://answers.splunk.com/answers/562662/using-trellis-with-simple-xml-extension.html"&gt;https://answers.splunk.com/answers/562662/using-trellis-with-simple-xml-extension.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;You would need to find/adjust CSS override as per your need.&lt;/P&gt;

&lt;P&gt;Here is an option to change table height using CSS Selector: &lt;A href="https://answers.splunk.com/answers/684166/how-to-change-table-height-when-no-results-are-fou-1.html"&gt;https://answers.splunk.com/answers/684166/how-to-change-table-height-when-no-results-are-fou-1.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Nov 2018 06:14:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289213#M18319</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-11-09T06:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the width of panels in xml?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289214#M18320</link>
      <description>&lt;P&gt;Works like a champ!  Copy the entire codeset into and replace a test panel.  Then work with the hidden panel, one per row.  Done!  Perfect!  Can have different sized for different panels based on the panel.  Terrific! &lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2019 19:10:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289214#M18320</guid>
      <dc:creator>jaxjohnny2000</dc:creator>
      <dc:date>2019-06-11T19:10:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the width of panels in xml?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289215#M18321</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I'm trying to achieve same functionality but it throwing some exception like below,&lt;/P&gt;

&lt;P&gt;Warning on line 3: Node is not allowed here&lt;/P&gt;

&lt;P&gt;and here is the panel&lt;/P&gt;

&lt;P&gt;`&lt;BR /&gt;
  test&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;   &amp;lt;html&amp;gt;
     &amp;lt;style&amp;gt;
       #ticketStatusPanel{
         width:25% !important;
       }
       #countTicketPanel{
         width:75% !important;
       }

     &amp;lt;/style&amp;gt;
   &amp;lt;/html&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;`&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2019 20:34:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289215#M18321</guid>
      <dc:creator>nagarajsf</dc:creator>
      <dc:date>2019-10-28T20:34:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the width of panels in xml?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289216#M18322</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;when I trying to insert CSS panel it throwing below error,&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;Warning on line 3: Node is not allowed here&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;and here is the panel&lt;/P&gt;

&lt;P&gt;test&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;html&amp;gt;
  &amp;lt;style&amp;gt;
    #ticketStatusPanel{
      width:25% !important;
    }
    #countTicketPanel{
      width:75% !important;
    }

  &amp;lt;/style&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 28 Oct 2019 21:03:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289216#M18322</guid>
      <dc:creator>nagarajsf</dc:creator>
      <dc:date>2019-10-28T21:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the width of panels in xml?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289217#M18323</link>
      <description>&lt;P&gt;Thanks. It worked in new version. How to accomplish same in Version 6.0.7&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 20:02:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289217#M18323</guid>
      <dc:creator>rajaguru27902</dc:creator>
      <dc:date>2019-11-20T20:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the width of panels in xml?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289218#M18324</link>
      <description>&lt;P&gt;FYI: It looks like this solution does not work on Splunk 7.3.3. Unsure why yet, will update if I figure it out. We had implemented it previously and it worked as expected, now Splunk seems to ignore the css override and equally spaces the panels anyways.&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jan 2020 16:52:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289218#M18324</guid>
      <dc:creator>maxzintel</dc:creator>
      <dc:date>2020-01-31T16:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the width of panels in xml?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289219#M18325</link>
      <description>&lt;P&gt;Hi, maxzintel,&lt;/P&gt;

&lt;P&gt;I had the same issue after our update to 7.3.3, and I just found the thread below that points to a workaround. I was able to put the &lt;/P&gt;</description>
      <pubDate>Mon, 17 Feb 2020 20:58:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289219#M18325</guid>
      <dc:creator>SpeschLOne</dc:creator>
      <dc:date>2020-02-17T20:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the width of panels in xml?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289220#M18326</link>
      <description>&lt;P&gt;@SpeschLOne for some reason I cannot see the end of your comment. However, we found a workaround as well. We had to create a file &lt;CODE&gt;/opt/splunk/etc/apps/search/appserver/static/{someName}.css&lt;/CODE&gt;. In it we added the custom css required to resize the panels and then referenced that in the form element on line 1 of the XML. After deleting all the ghost panels that aren’t working anymore everything worked as expected.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Feb 2020 14:41:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289220#M18326</guid>
      <dc:creator>maxzintel</dc:creator>
      <dc:date>2020-02-18T14:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the width of panels in xml?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289221#M18327</link>
      <description>&lt;P&gt;We also have the same issue with 7.3.3, and have found the following workaround: simply add an empty paragraph in the HTML code before the style tag:&lt;BR /&gt;
&lt;PRE&gt;&lt;CODE&gt;&amp;lt;html&amp;gt;&lt;BR /&gt;
  &amp;lt;p/&amp;gt;&lt;BR /&gt;
  &amp;lt;style&amp;gt;&lt;BR /&gt;
     ...&lt;BR /&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 06:25:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289221#M18327</guid>
      <dc:creator>Martin_Doering</dc:creator>
      <dc:date>2020-03-04T06:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the width of panels in xml?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289222#M18328</link>
      <description>&lt;P&gt;brilliant solution, very helpful &lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 10:32:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-the-width-of-panels-in-xml/m-p/289222#M18328</guid>
      <dc:creator>aditi1996verma</dc:creator>
      <dc:date>2020-04-22T10:32:07Z</dc:date>
    </item>
  </channel>
</rss>

