<?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: Using trellis with simple XML extension in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Using-trellis-with-simple-XML-extension/m-p/367962#M44501</link>
    <description>&lt;P&gt;Without the screenshot of what you currently have it will be tough to give you exact pointers but let me try some of the options:&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/3354iBEEFEF184A6B6C75/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;&lt;STRONG&gt;Step 1&lt;/STRONG&gt;) Height of panel though Simple XML&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;        &amp;lt;option name="height"&amp;gt;150&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;STRONG&gt;Step 2&lt;/STRONG&gt;) Size of Trellis through UI Panel settings and Simple XML by changing to &lt;CODE&gt;large&lt;/CODE&gt;, &lt;CODE&gt;medium&lt;/CODE&gt; or &lt;CODE&gt;small&lt;/CODE&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;       &amp;lt;option name="trellis.size"&amp;gt;small&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;STRONG&gt;Step 3&lt;/STRONG&gt;) CSS override for trellis visualizations (Since we are ordering &lt;CODE&gt;extra-small&lt;/CODE&gt; size t-shirts ;))&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;      .facets-container .viz-facet {
          height: 100px !important;
          width: 100px !important;
          float: left;
          padding: 10px 0px 0px 0px;
      } 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;PS: You can give your &lt;CODE&gt;single value panel some id&lt;/CODE&gt; in Simple XML to write CSS override for specific trellis if you have multiple on the same dashbaord or if you have created a CSS file to be included on all your dashboards and do not want to change trellis only on selected dashboards:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  &amp;lt;single id="singleValueTrellis"&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Padding changes are not required unless you want to bring all Trellis together.&lt;BR /&gt;
&lt;STRONG&gt;For CSS Selectors reference check out w3schools&lt;/STRONG&gt;: &lt;A href="https://www.w3schools.com/cssref/css_selectors.asp"&gt;https://www.w3schools.com/cssref/css_selectors.asp&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Following is a run anywhere search to test out CSS Override on Trellis (Remove commented code for CSS override) :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;Splunk Answers 562662 - Single Value Trellis with JS and CSS extension&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;!-- Remove this comment to see CSS Override for Trellis
      &amp;lt;html depends="$alwaysHideCSSForTrellis$"&amp;gt;
        &amp;lt;style&amp;gt;
          .facets-container .viz-facet {
              height: 100px !important;
              width: 100px !important;
              float: left;
              padding: 10px 0px 0px 0px;
          }        
        &amp;lt;/style&amp;gt;
      &amp;lt;/html&amp;gt;
Remove this comment to see CSS Override for Trellis --&amp;gt;
      &amp;lt;single id="singleValueTrellis"&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index="_internal" sourcetype="splunkd" log_level!="INFO"
| timechart count by component&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="colorBy"&amp;gt;value&amp;lt;/option&amp;gt;
        &amp;lt;option name="colorMode"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;!--Switch Panel Height as per needs--&amp;gt;
        &amp;lt;option name="height"&amp;gt;200&amp;lt;/option&amp;gt;
        &amp;lt;option name="numberPrecision"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeColors"&amp;gt;["0x65a637","0x6db7c6","0xf7bc38","0xf58f39","0xd93f3c"]&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeValues"&amp;gt;[0,30,70,100]&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;1&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;standard&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;0&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;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 15 Aug 2017 05:28:01 GMT</pubDate>
    <dc:creator>niketn</dc:creator>
    <dc:date>2017-08-15T05:28:01Z</dc:date>
    <item>
      <title>Using trellis with simple XML extension</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Using-trellis-with-simple-XML-extension/m-p/367957#M44496</link>
      <description>&lt;P&gt;I'm trying to enable the trellis layout on a SingleView inside a Javascript file that I call on a simple XML dashboard. I was not yet successful in rendering it. The function I am using is as follows:&lt;BR /&gt;
...&lt;BR /&gt;
    new SingleView({&lt;BR /&gt;
        id: "singleview",&lt;BR /&gt;
        managerid: "mysearch",&lt;BR /&gt;
        colorMode: "block",&lt;BR /&gt;
        drilldown: "none",&lt;BR /&gt;
        rangeColors: "[\"0x6db7c6\",\"0x65a637\",\"0xf7bc38\",\"0xd93f3c\"]",&lt;BR /&gt;
        rangeValues: "[0,80,95]",&lt;BR /&gt;
        useColors: true,&lt;BR /&gt;
        "trellis.enabled": true,&lt;BR /&gt;
        "trellis.splitBy": "Location_Name",&lt;BR /&gt;
        "trellis.size": "medium",&lt;BR /&gt;
        el: $("#singleview")&lt;BR /&gt;
    }).render();&lt;BR /&gt;
...&lt;/P&gt;

&lt;P&gt;What am I doing wrong?&lt;/P&gt;

&lt;P&gt;Thanks.&lt;BR /&gt;
AC&lt;/P&gt;</description>
      <pubDate>Sat, 12 Aug 2017 02:37:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Using-trellis-with-simple-XML-extension/m-p/367957#M44496</guid>
      <dc:creator>ariel_canonizad</dc:creator>
      <dc:date>2017-08-12T02:37:09Z</dc:date>
    </item>
    <item>
      <title>Re: Using trellis with simple XML extension</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Using-trellis-with-simple-XML-extension/m-p/367958#M44497</link>
      <description>&lt;P&gt;@ariel.canonizado, I dont think trellis is supported on SplunkJS stack or HTML panels. I tried converting a dashboard with working Trellis from Simple XML to HTML Dashboard and it stopped working. Please tag this as BUG and reach out to Splunk Support.&lt;/P&gt;

&lt;P&gt;Is there a reason why you want to use JavaScript and Simple XML would not work for you? &lt;/P&gt;</description>
      <pubDate>Sun, 13 Aug 2017 03:34:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Using-trellis-with-simple-XML-extension/m-p/367958#M44497</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-08-13T03:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: Using trellis with simple XML extension</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Using-trellis-with-simple-XML-extension/m-p/367959#M44498</link>
      <description>&lt;P&gt;thank you, @niketnilay. We have the same result that is why I posted here and trying to figure out if other are getting similar results.&lt;BR /&gt;
The reason why I am trying to use javascript instead of just simpleXML is because I wanted to control the space the panel uses. If there is only a handful of single value in the trellis, there is so much wasted space in the panel. A work around is to probably control how the panel paints its area. Does any one know how to control this as a panel option?&lt;BR /&gt;
Thanks again.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2017 13:07:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Using-trellis-with-simple-XML-extension/m-p/367959#M44498</guid>
      <dc:creator>ariel_canonizad</dc:creator>
      <dc:date>2017-08-14T13:07:01Z</dc:date>
    </item>
    <item>
      <title>Re: Using trellis with simple XML extension</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Using-trellis-with-simple-XML-extension/m-p/367960#M44499</link>
      <description>&lt;P&gt;Can you add a screenshot of what you have? Also which visualization you are using for trellis?&lt;BR /&gt;
You can try CSS extension.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2017 16:51:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Using-trellis-with-simple-XML-extension/m-p/367960#M44499</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-08-14T16:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: Using trellis with simple XML extension</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Using-trellis-with-simple-XML-extension/m-p/367961#M44500</link>
      <description>&lt;P&gt;@niketnilay, I was using the single view chart for trellis. With regards to CSS, can you point me to some example of how to do this. I am not well-versed with CSS but should be able to follow. Thanks -AC.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Aug 2017 03:32:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Using-trellis-with-simple-XML-extension/m-p/367961#M44500</guid>
      <dc:creator>ariel_canonizad</dc:creator>
      <dc:date>2017-08-15T03:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: Using trellis with simple XML extension</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Using-trellis-with-simple-XML-extension/m-p/367962#M44501</link>
      <description>&lt;P&gt;Without the screenshot of what you currently have it will be tough to give you exact pointers but let me try some of the options:&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/3354iBEEFEF184A6B6C75/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;&lt;STRONG&gt;Step 1&lt;/STRONG&gt;) Height of panel though Simple XML&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;        &amp;lt;option name="height"&amp;gt;150&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;STRONG&gt;Step 2&lt;/STRONG&gt;) Size of Trellis through UI Panel settings and Simple XML by changing to &lt;CODE&gt;large&lt;/CODE&gt;, &lt;CODE&gt;medium&lt;/CODE&gt; or &lt;CODE&gt;small&lt;/CODE&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;       &amp;lt;option name="trellis.size"&amp;gt;small&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;STRONG&gt;Step 3&lt;/STRONG&gt;) CSS override for trellis visualizations (Since we are ordering &lt;CODE&gt;extra-small&lt;/CODE&gt; size t-shirts ;))&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;      .facets-container .viz-facet {
          height: 100px !important;
          width: 100px !important;
          float: left;
          padding: 10px 0px 0px 0px;
      } 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;PS: You can give your &lt;CODE&gt;single value panel some id&lt;/CODE&gt; in Simple XML to write CSS override for specific trellis if you have multiple on the same dashbaord or if you have created a CSS file to be included on all your dashboards and do not want to change trellis only on selected dashboards:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  &amp;lt;single id="singleValueTrellis"&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Padding changes are not required unless you want to bring all Trellis together.&lt;BR /&gt;
&lt;STRONG&gt;For CSS Selectors reference check out w3schools&lt;/STRONG&gt;: &lt;A href="https://www.w3schools.com/cssref/css_selectors.asp"&gt;https://www.w3schools.com/cssref/css_selectors.asp&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Following is a run anywhere search to test out CSS Override on Trellis (Remove commented code for CSS override) :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;Splunk Answers 562662 - Single Value Trellis with JS and CSS extension&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;!-- Remove this comment to see CSS Override for Trellis
      &amp;lt;html depends="$alwaysHideCSSForTrellis$"&amp;gt;
        &amp;lt;style&amp;gt;
          .facets-container .viz-facet {
              height: 100px !important;
              width: 100px !important;
              float: left;
              padding: 10px 0px 0px 0px;
          }        
        &amp;lt;/style&amp;gt;
      &amp;lt;/html&amp;gt;
Remove this comment to see CSS Override for Trellis --&amp;gt;
      &amp;lt;single id="singleValueTrellis"&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index="_internal" sourcetype="splunkd" log_level!="INFO"
| timechart count by component&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="colorBy"&amp;gt;value&amp;lt;/option&amp;gt;
        &amp;lt;option name="colorMode"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;!--Switch Panel Height as per needs--&amp;gt;
        &amp;lt;option name="height"&amp;gt;200&amp;lt;/option&amp;gt;
        &amp;lt;option name="numberPrecision"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeColors"&amp;gt;["0x65a637","0x6db7c6","0xf7bc38","0xf58f39","0xd93f3c"]&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeValues"&amp;gt;[0,30,70,100]&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;1&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;standard&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;0&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;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 15 Aug 2017 05:28:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Using-trellis-with-simple-XML-extension/m-p/367962#M44501</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-08-15T05:28:01Z</dc:date>
    </item>
    <item>
      <title>Re: Using trellis with simple XML extension</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Using-trellis-with-simple-XML-extension/m-p/367963#M44502</link>
      <description>&lt;P&gt;@niketnilay In which version of Splunk did you test this dashboard? I tried it in 6.6.2 and 7.0.1 but it does not resize the div's. The div containing the viz-facet class has the following style settings:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;style="width: 260px; height: 146px;"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and not the expected 100px by 100px&lt;/P&gt;

&lt;P&gt;(I did a copy and past of your dashboard)&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2017 09:58:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Using-trellis-with-simple-XML-extension/m-p/367963#M44502</guid>
      <dc:creator>dajomas</dc:creator>
      <dc:date>2017-12-06T09:58:11Z</dc:date>
    </item>
    <item>
      <title>Re: Using trellis with simple XML extension</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Using-trellis-with-simple-XML-extension/m-p/367964#M44503</link>
      <description>&lt;P&gt;Okay, I finally fixed it.&lt;/P&gt;

&lt;P&gt;In stead of using:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;.facets-container&amp;gt;.viz-facet {
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;in the style section, I used&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;#singleValueTrellis #singlevalue div div {
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and that worked.&lt;/P&gt;

&lt;P&gt;Just make sure the first part is the same as the id you assign to the single&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2017 11:17:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Using-trellis-with-simple-XML-extension/m-p/367964#M44503</guid>
      <dc:creator>dajomas</dc:creator>
      <dc:date>2017-12-06T11:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: Using trellis with simple XML extension</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Using-trellis-with-simple-XML-extension/m-p/367965#M44504</link>
      <description>&lt;P&gt;You can also give a try to this i.e. &lt;CODE&gt;space&lt;/CODE&gt; instead of &lt;CODE&gt;&amp;gt;&lt;/CODE&gt; in CSS Selector. I will check again when the time permits.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;.facets-container .viz-facet {
  ...
}
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 06 Dec 2017 11:42:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Using-trellis-with-simple-XML-extension/m-p/367965#M44504</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-12-06T11:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: Using trellis with simple XML extension</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Using-trellis-with-simple-XML-extension/m-p/367966#M44505</link>
      <description>&lt;P&gt;Yes, the space works too!&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2017 11:46:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Using-trellis-with-simple-XML-extension/m-p/367966#M44505</guid>
      <dc:creator>dajomas</dc:creator>
      <dc:date>2017-12-06T11:46:14Z</dc:date>
    </item>
    <item>
      <title>Re: Using trellis with simple XML extension</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Using-trellis-with-simple-XML-extension/m-p/367967#M44506</link>
      <description>&lt;P&gt;@dajomas,  thanks I have corrected, space looks for any match rather than &lt;CODE&gt;&amp;gt;&lt;/CODE&gt; which find a match right under parent node.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2017 13:14:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Using-trellis-with-simple-XML-extension/m-p/367967#M44506</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-12-06T13:14:19Z</dc:date>
    </item>
    <item>
      <title>Re: Using trellis with simple XML extension</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Using-trellis-with-simple-XML-extension/m-p/367968#M44507</link>
      <description>&lt;P&gt;@niketnilay I must say that I do prefer the one that uses id names since you can tailor each trellis that way in stead of forcing all trellis' to use the same dimensions&lt;/P&gt;

&lt;P&gt;So I would use&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;#assignedID #subID div div {
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Where:&lt;BR /&gt;
assignedID is the ID you set in the chart/single tag&lt;BR /&gt;
subID is "singlevalue" for single and the contents of the option "charting.chart" for the filler, marker and radial gauges&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2017 13:25:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Using-trellis-with-simple-XML-extension/m-p/367968#M44507</guid>
      <dc:creator>dajomas</dc:creator>
      <dc:date>2017-12-06T13:25:57Z</dc:date>
    </item>
  </channel>
</rss>

