<?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 can I have 3 charts for 1 panel display on the same row instead of each on a different row? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-have-3-charts-for-1-panel-display-on-the-same-row/m-p/250433#M74792</link>
    <description>&lt;P&gt;Sorry for the confusion, but I was a little unclear if you did try that given that you did not have an actual &lt;CODE&gt;&amp;lt;panel&amp;gt;&lt;/CODE&gt; element (or &lt;CODE&gt;&amp;lt;title&amp;gt;&lt;/CODE&gt; elements) in your XML snippet, even though you referred to it as a panel.&lt;/P&gt;</description>
    <pubDate>Wed, 12 Oct 2016 16:38:27 GMT</pubDate>
    <dc:creator>rjthibod</dc:creator>
    <dc:date>2016-10-12T16:38:27Z</dc:date>
    <item>
      <title>How can I have 3 charts for 1 panel display on the same row instead of each on a different row?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-have-3-charts-for-1-panel-display-on-the-same-row/m-p/250428#M74787</link>
      <description>&lt;P&gt;My goal here is to save my panel as a "pre-built" one that can be distributed to other users dashboard at my company.  What I'm running into is a lack of formatting options that I figure have to exist somewhere, but I am simply missing how to implement them.&lt;/P&gt;

&lt;P&gt;Essentially if I create 3 different panels and put them within the same &lt;CODE&gt;&amp;lt;row&amp;gt;&lt;/CODE&gt; element, it visually accomplish what I want to see, however the fact that each of them are different panels kills the functionality that I want of the user only have to add 1 panel instead of 3 different ones. &lt;/P&gt;

&lt;P&gt;I see that I can add 3 charts to 1 panel, however, I cannot get them to all display on 1 row.  Here is the current setup:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;row&amp;gt;
&amp;lt;chart&amp;gt;
  ....
&amp;lt;/chart&amp;gt;
&amp;lt;chart&amp;gt;
 .....
 &amp;lt;/chart&amp;gt;
&amp;lt;chart&amp;gt;
  .....
 &amp;lt;/chart&amp;gt;
&amp;lt;/row&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Does anyone know of a way to get all these 3 charts to display on the same row without creating more than 1 panel?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Oct 2016 00:47:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-have-3-charts-for-1-panel-display-on-the-same-row/m-p/250428#M74787</guid>
      <dc:creator>bcronrath</dc:creator>
      <dc:date>2016-10-11T00:47:04Z</dc:date>
    </item>
    <item>
      <title>Re: How can I have 3 charts for 1 panel display on the same row instead of each on a different row?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-have-3-charts-for-1-panel-display-on-the-same-row/m-p/250429#M74788</link>
      <description>&lt;P&gt;You can add a css stylesheet to your XML by including it in your dashboard tag:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard stylesheet="mycss.css"&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Then include a stanza like the following in mycss.css (file saved to $SPLUNK_HOME/etc/apps/{your_app}/appserver/static):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;.panel-element-row {
    display: inline-block !important;
    width: 33% !important;
}
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Note that this will cause all charts in your dashboard to be 1/3 width and inline. If you have other charts in you dashboard that you do not want formatted in this way, you will have to make the CSS more specific.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 11:24:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-have-3-charts-for-1-panel-display-on-the-same-row/m-p/250429#M74788</guid>
      <dc:creator>lquinn</dc:creator>
      <dc:date>2020-09-29T11:24:13Z</dc:date>
    </item>
    <item>
      <title>Re: How can I have 3 charts for 1 panel display on the same row instead of each on a different row?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-have-3-charts-for-1-panel-display-on-the-same-row/m-p/250430#M74789</link>
      <description>&lt;P&gt;If your panels need to be of different widths you can try &lt;A href="https://answers.splunk.com/answers/149563/simple-xml-display-2-panels-in-a-row-with-different-widths.html#answer-150010"&gt;this answer&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Dave&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2016 08:46:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-have-3-charts-for-1-panel-display-on-the-same-row/m-p/250430#M74789</guid>
      <dc:creator>davebrooking</dc:creator>
      <dc:date>2016-10-12T08:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: How can I have 3 charts for 1 panel display on the same row instead of each on a different row?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-have-3-charts-for-1-panel-display-on-the-same-row/m-p/250431#M74790</link>
      <description>&lt;P&gt;You need to wrap each &lt;CODE&gt;&amp;lt;chart&amp;gt;&lt;/CODE&gt; with &lt;CODE&gt;&amp;lt;panel&amp;gt;&lt;/CODE&gt;. You can have a &lt;CODE&gt;&amp;lt;title&amp;gt;&lt;/CODE&gt; directly under the &lt;CODE&gt;&amp;lt;panel&amp;gt;&lt;/CODE&gt; element or the &lt;CODE&gt;&amp;lt;chart&amp;gt;&lt;/CODE&gt; element.  I would not suggest putting a&lt;CODE&gt;&amp;lt;title&amp;gt;&lt;/CODE&gt; under both.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; &amp;lt;row&amp;gt;
   &amp;lt;panel&amp;gt;
     &amp;lt;chart&amp;gt;
        ....
     &amp;lt;/chart&amp;gt;
   &amp;lt;/panel&amp;gt;
   &amp;lt;panel&amp;gt;
      &amp;lt;chart&amp;gt;
       .....
      &amp;lt;/chart&amp;gt;
    &amp;lt;/panel&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;chart&amp;gt;
       .....
      &amp;lt;/chart&amp;gt;
    &amp;lt;/panel&amp;gt;
 &amp;lt;/row&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 12 Oct 2016 09:08:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-have-3-charts-for-1-panel-display-on-the-same-row/m-p/250431#M74790</guid>
      <dc:creator>rjthibod</dc:creator>
      <dc:date>2016-10-12T09:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: How can I have 3 charts for 1 panel display on the same row instead of each on a different row?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-have-3-charts-for-1-panel-display-on-the-same-row/m-p/250432#M74791</link>
      <description>&lt;P&gt;I downvoted this post because did not read the question, i was asking for a single panel, not 3, of course i've tried the 3 panel approach as outlined&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2016 16:27:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-have-3-charts-for-1-panel-display-on-the-same-row/m-p/250432#M74791</guid>
      <dc:creator>bcronrath</dc:creator>
      <dc:date>2016-10-12T16:27:23Z</dc:date>
    </item>
    <item>
      <title>Re: How can I have 3 charts for 1 panel display on the same row instead of each on a different row?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-have-3-charts-for-1-panel-display-on-the-same-row/m-p/250433#M74792</link>
      <description>&lt;P&gt;Sorry for the confusion, but I was a little unclear if you did try that given that you did not have an actual &lt;CODE&gt;&amp;lt;panel&amp;gt;&lt;/CODE&gt; element (or &lt;CODE&gt;&amp;lt;title&amp;gt;&lt;/CODE&gt; elements) in your XML snippet, even though you referred to it as a panel.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2016 16:38:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-have-3-charts-for-1-panel-display-on-the-same-row/m-p/250433#M74792</guid>
      <dc:creator>rjthibod</dc:creator>
      <dc:date>2016-10-12T16:38:27Z</dc:date>
    </item>
  </channel>
</rss>

