<?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 Limit Panel Height? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-To-Limit-Panel-Height/m-p/193513#M12081</link>
    <description>&lt;P&gt;The 500 vs 500px shouldn't make a difference&lt;/P&gt;</description>
    <pubDate>Wed, 18 Jul 2018 18:28:04 GMT</pubDate>
    <dc:creator>nick405060</dc:creator>
    <dc:date>2018-07-18T18:28:04Z</dc:date>
    <item>
      <title>How To Limit Panel Height?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-To-Limit-Panel-Height/m-p/193504#M12072</link>
      <description>&lt;P&gt;I have a panel which is used for filters only, but when gettin' data dynamic, these radio buttons are expanding height, I'd like them to become like a listed page because I also have a multiselect at the same panel.&lt;BR /&gt;
I know that is possible with CSS, but is there an easier way or do I have to upload a file to the server?&lt;BR /&gt;
Thanks In advance!&lt;BR /&gt;
As follows:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  &amp;lt;row&amp;gt;
     &amp;lt;panel&amp;gt;
       &amp;lt;input type="radio" token="process" searchWhenChanged="true"&amp;gt;
         &amp;lt;label&amp;gt;Search Process&amp;lt;/label&amp;gt;
         &amp;lt;populatingSearch fieldForLabel="PROCESS_NAME" fieldForValue="PROCESS_NAME"&amp;gt;index=main sourcetype=main01 | stats by PROCESS_NAME&amp;lt;/populatingSearch&amp;gt;
       &amp;lt;/input&amp;gt;
       &amp;lt;input type="multiselect" token="process" searchWhenChanged="true"&amp;gt;
         &amp;lt;label&amp;gt;PROCESS_NAME&amp;lt;/label&amp;gt;
         &amp;lt;populatingSearch fieldForLabel="PROCESS_NAME" fieldForValue="PROCESS_NAME"&amp;gt;index=main sourcetype=main01 | stats by PROCESS_NAME&amp;lt;/populatingSearch&amp;gt;
       &amp;lt;/input&amp;gt;
     &amp;lt;/panel&amp;gt;
   &amp;lt;/row&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 24 Mar 2015 13:03:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-To-Limit-Panel-Height/m-p/193504#M12072</guid>
      <dc:creator>vtsguerrero</dc:creator>
      <dc:date>2015-03-24T13:03:53Z</dc:date>
    </item>
    <item>
      <title>Re: How To Limit Panel Height?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-To-Limit-Panel-Height/m-p/193505#M12073</link>
      <description>&lt;P&gt;You can set height statically using simple XML:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;option name="height"&amp;gt;500px&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The only other alternatives I know of are to use either CSS or JavaScript.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 13:42:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-To-Limit-Panel-Height/m-p/193505#M12073</guid>
      <dc:creator>masonmorales</dc:creator>
      <dc:date>2015-03-24T13:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: How To Limit Panel Height?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-To-Limit-Panel-Height/m-p/193506#M12074</link>
      <description>&lt;P&gt;I get a synthax error when using option, where should I place it in my piece of code? Inside panel tag or row tag for this case?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 18:57:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-To-Limit-Panel-Height/m-p/193506#M12074</guid>
      <dc:creator>vtsguerrero</dc:creator>
      <dc:date>2015-03-24T18:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: How To Limit Panel Height?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-To-Limit-Panel-Height/m-p/193507#M12075</link>
      <description>&lt;P&gt;Neither. You would put it inside your visualization element (chart, table, etc.) for that panel. I am not sure if it'll expand your inputs, but it's worth a try. If not, your only other option is CSS or JS.&lt;/P&gt;

&lt;P&gt;See also: &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.2.2/Viz/PanelreferenceforSimplifiedXML"&gt;Simple XML Reference&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Mar 2015 13:29:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-To-Limit-Panel-Height/m-p/193507#M12075</guid>
      <dc:creator>masonmorales</dc:creator>
      <dc:date>2015-03-25T13:29:18Z</dc:date>
    </item>
    <item>
      <title>Re: How To Limit Panel Height?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-To-Limit-Panel-Height/m-p/193508#M12076</link>
      <description>&lt;P&gt;When I use inside both elements I get a synthax error, I think it probably wouldn't work for a simple panel, what I need is just a way to limit the size so the inputs would become pages and not take the whole page height when gettin' dynamic... Would this change be simple in css, @masonmorales ? How Do I do that with css then?&lt;BR /&gt;
Thanks for the tips!&lt;/P&gt;</description>
      <pubDate>Wed, 25 Mar 2015 13:33:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-To-Limit-Panel-Height/m-p/193508#M12076</guid>
      <dc:creator>vtsguerrero</dc:creator>
      <dc:date>2015-03-25T13:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: How To Limit Panel Height?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-To-Limit-Panel-Height/m-p/193509#M12077</link>
      <description>&lt;P&gt;Hi  vtsguerrero&lt;/P&gt;

&lt;P&gt;you have two option &lt;BR /&gt;
           first option: &lt;BR /&gt;
use   &lt;CODE&gt;500px&lt;/CODE&gt;in the two inputs &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;row&amp;gt;
      &amp;lt;panel&amp;gt;
        &amp;lt;input type="radio" token="process" searchWhenChanged="true"&amp;gt;
          &amp;lt;label&amp;gt;Search Process&amp;lt;/label&amp;gt;
          &amp;lt;option name="height"&amp;gt;500px&amp;lt;/option&amp;gt;
          &amp;lt;populatingSearch fieldForLabel="PROCESS_NAME" fieldForValue="PROCESS_NAME"&amp;gt;index=main sourcetype=main01 | stats by PROCESS_NAME&amp;lt;/populatingSearch&amp;gt;
        &amp;lt;/input&amp;gt;
        &amp;lt;input type="multiselect" token="process" searchWhenChanged="true"&amp;gt;
          &amp;lt;label&amp;gt;PROCESS_NAME&amp;lt;/label&amp;gt;
         &amp;lt;option name="height"&amp;gt;500px&amp;lt;/option&amp;gt;
          &amp;lt;populatingSearch fieldForLabel="PROCESS_NAME" fieldForValue="PROCESS_NAME"&amp;gt;index=main sourcetype=main01 | stats by PROCESS_NAME&amp;lt;/populatingSearch&amp;gt;
        &amp;lt;/input&amp;gt;
      &amp;lt;/panel&amp;gt;
    &amp;lt;/row&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;second option :&lt;BR /&gt;
use  &lt;CODE&gt;&lt;/CODE&gt;and  to frame the input&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;row&amp;gt;
          &amp;lt;panel&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;
            &amp;lt;input type="radio" token="process" searchWhenChanged="true"&amp;gt;
              &amp;lt;label&amp;gt;Search Process&amp;lt;/label&amp;gt;
              &amp;lt;populatingSearch fieldForLabel="PROCESS_NAME" fieldForValue="PROCESS_NAME"&amp;gt;index=main sourcetype=main01 | stats by PROCESS_NAME&amp;lt;/populatingSearch&amp;gt;
            &amp;lt;/input&amp;gt;
            &amp;lt;input type="multiselect" token="process" searchWhenChanged="true"&amp;gt;
              &amp;lt;label&amp;gt;PROCESS_NAME&amp;lt;/label&amp;gt;
              &amp;lt;populatingSearch fieldForLabel="PROCESS_NAME" fieldForValue="PROCESS_NAME"&amp;gt;index=main sourcetype=main01 | stats by PROCESS_NAME&amp;lt;/populatingSearch&amp;gt;
            &amp;lt;/input&amp;gt;
    &amp;lt;/fieldset&amp;gt;
          &amp;lt;/panel&amp;gt;
        &amp;lt;/row&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 26 Mar 2015 13:12:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-To-Limit-Panel-Height/m-p/193509#M12077</guid>
      <dc:creator>chimell</dc:creator>
      <dc:date>2015-03-26T13:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: How To Limit Panel Height?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-To-Limit-Panel-Height/m-p/193510#M12078</link>
      <description>&lt;P&gt;Still not workin', I put some hard-code inputs to see if they would fit the height:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;input type="radio" token="process" searchWhenChanged="true"&amp;gt;
        &amp;lt;label&amp;gt;Select A Process&amp;lt;/label&amp;gt;
        &amp;lt;option name="height"&amp;gt;50px&amp;lt;/option&amp;gt;
        &amp;lt;choice&amp;gt;Test01&amp;lt;/choice&amp;gt;
        &amp;lt;choice&amp;gt;Test02&amp;lt;/choice&amp;gt;
        &amp;lt;choice&amp;gt;Test03&amp;lt;/choice&amp;gt;
        &amp;lt;choice&amp;gt;Test04&amp;lt;/choice&amp;gt;
        &amp;lt;choice&amp;gt;Test05&amp;lt;/choice&amp;gt;
        &amp;lt;choice&amp;gt;Test06&amp;lt;/choice&amp;gt;
        &amp;lt;choice&amp;gt;Test07&amp;lt;/choice&amp;gt;
        &amp;lt;choice&amp;gt;Test08&amp;lt;/choice&amp;gt;
        &amp;lt;choice&amp;gt;Test09&amp;lt;/choice&amp;gt;
        &amp;lt;choice&amp;gt;Test10&amp;lt;/choice&amp;gt;
        &amp;lt;choice&amp;gt;Test11&amp;lt;/choice&amp;gt;
        &amp;lt;choice&amp;gt;Test12&amp;lt;/choice&amp;gt;
        &amp;lt;choice&amp;gt;Test13&amp;lt;/choice&amp;gt;
        &amp;lt;choice&amp;gt;Test14&amp;lt;/choice&amp;gt;
        &amp;lt;choice&amp;gt;Test15&amp;lt;/choice&amp;gt;
        &amp;lt;choice&amp;gt;Test16&amp;lt;/choice&amp;gt;
        &amp;lt;choice&amp;gt;Test17&amp;lt;/choice&amp;gt;
        &amp;lt;choice&amp;gt;Test18&amp;lt;/choice&amp;gt;
        &amp;lt;choice&amp;gt;Test19&amp;lt;/choice&amp;gt;
        &amp;lt;choice&amp;gt;Test20&amp;lt;/choice&amp;gt;
      &amp;lt;/input&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 26 Mar 2015 14:13:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-To-Limit-Panel-Height/m-p/193510#M12078</guid>
      <dc:creator>vtsguerrero</dc:creator>
      <dc:date>2015-03-26T14:13:55Z</dc:date>
    </item>
    <item>
      <title>Re: How To Limit Panel Height?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-To-Limit-Panel-Height/m-p/193511#M12079</link>
      <description>&lt;P&gt;use only 500 instead of 500px&lt;/P&gt;</description>
      <pubDate>Thu, 15 Mar 2018 20:50:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-To-Limit-Panel-Height/m-p/193511#M12079</guid>
      <dc:creator>kumargaurav</dc:creator>
      <dc:date>2018-03-15T20:50:10Z</dc:date>
    </item>
    <item>
      <title>Re: How To Limit Panel Height?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-To-Limit-Panel-Height/m-p/193512#M12080</link>
      <description>&lt;P&gt;Not working for a table in Splunk 6.3. No error it just doesn't affect height.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jul 2018 17:40:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-To-Limit-Panel-Height/m-p/193512#M12080</guid>
      <dc:creator>nick405060</dc:creator>
      <dc:date>2018-07-18T17:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: How To Limit Panel Height?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-To-Limit-Panel-Height/m-p/193513#M12081</link>
      <description>&lt;P&gt;The 500 vs 500px shouldn't make a difference&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jul 2018 18:28:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-To-Limit-Panel-Height/m-p/193513#M12081</guid>
      <dc:creator>nick405060</dc:creator>
      <dc:date>2018-07-18T18:28:04Z</dc:date>
    </item>
  </channel>
</rss>

