<?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: Getting rid of &amp;quot;other&amp;quot; in pie chart in Splunk Dev</title>
    <link>https://community.splunk.com/t5/Splunk-Dev/Getting-rid-of-quot-other-quot-in-pie-chart/m-p/20173#M158</link>
    <description>&lt;P&gt;I edited the visualization to add this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;option name="charting.chart.sliceCollapsingThreshold"&amp;gt;0.01&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;But i did so through the UI by clicking on the "paint brush" above the pie chart when in edit mode and setting the "minimum size" to 0%.&lt;/P&gt;

&lt;P&gt;Doing that added the above to the dashboards xml.&lt;/P&gt;</description>
    <pubDate>Tue, 11 Dec 2018 14:35:19 GMT</pubDate>
    <dc:creator>jkat54</dc:creator>
    <dc:date>2018-12-11T14:35:19Z</dc:date>
    <item>
      <title>Getting rid of "other" in pie chart</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Getting-rid-of-quot-other-quot-in-pie-chart/m-p/20166#M151</link>
      <description>&lt;P&gt;Splunk Ninjas,&lt;/P&gt;

&lt;P&gt;It seems that I'm unable to remove "other" in my pie chart when I do this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=facebook sourcetype="facebook_stream_table" stream_attribution="*" | eval stream_attribution=if(stream_attribution=="", "None", stream_attribution) | chart count over stream_attribution useother=false
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Also I'm seeing this message "&lt;STRONG&gt;The following options were specified but have no effect when a split-by clause is not provided:useother&lt;/STRONG&gt;"&lt;/P&gt;

&lt;P&gt;Then I tried&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=facebook sourcetype="facebook_stream_table" stream_attribution="*" | eval stream_attribution=if(stream_attribution=="", "None", stream_attribution) | chart count over stream_attribution limit=1000 useother=false
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and I get this message "&lt;STRONG&gt;The following options were specified but have no effect when a split-by clause is not provided:limit, useother&lt;/STRONG&gt;"&lt;/P&gt;

&lt;P&gt;I'm unable to get any results when I drilldown with stream_attribution=other since there isn't such value in sourcetype=facebook_stream_table &lt;/P&gt;

&lt;P&gt;I also took a look at this &lt;A href="http://splunk-base.splunk.com/answers/30018/useotherf-in-a-pie-chart" target="_blank"&gt;http://splunk-base.splunk.com/answers/30018/useotherf-in-a-pie-chart&lt;/A&gt; but it doesn't work.&lt;/P&gt;

&lt;P&gt;Splunk version: 4.3.1, MacOSX&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 11:37:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Getting-rid-of-quot-other-quot-in-pie-chart/m-p/20166#M151</guid>
      <dc:creator>Nicholas_Key</dc:creator>
      <dc:date>2020-09-28T11:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: Getting rid of "other" in pie chart</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Getting-rid-of-quot-other-quot-in-pie-chart/m-p/20167#M152</link>
      <description>&lt;P&gt;@Nicholas Key,&lt;/P&gt;

&lt;P&gt;If you are using simple XML try removing the "useother" option and instead use &lt;/P&gt;

&lt;P&gt;"sliceCollapsingThreshold" option&lt;/P&gt;

&lt;P&gt;This helped me before, you can set it to zero, so it doesn't collapse the values into other.&lt;/P&gt;

&lt;P&gt;&lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/Developer/CustomChartingConfig-chartlegend#piechart"&gt;http://docs.splunk.com/Documentation/Splunk/latest/AdvancedDev/CustomChartingConfig-chartlegend#piechart&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Regards,&lt;/P&gt;

&lt;P&gt;MHibbin&lt;/P&gt;</description>
      <pubDate>Thu, 05 Apr 2012 15:45:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Getting-rid-of-quot-other-quot-in-pie-chart/m-p/20167#M152</guid>
      <dc:creator>MHibbin</dc:creator>
      <dc:date>2012-04-05T15:45:39Z</dc:date>
    </item>
    <item>
      <title>Re: Getting rid of "other" in pie chart</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Getting-rid-of-quot-other-quot-in-pie-chart/m-p/20168#M153</link>
      <description>&lt;P&gt;checking "..?showsource=1", the advanced XML looks like you should add... &lt;BR /&gt;
      &lt;CODE&gt;&amp;lt;param name="suppressionList"&amp;gt;&lt;BR /&gt;
        &amp;lt;item&amp;gt;charting.chart.sliceCollapsingThreshold&amp;lt;/item&amp;gt;&lt;BR /&gt;
        &amp;lt;item&amp;gt;charting.chart&amp;lt;/item&amp;gt;&lt;BR /&gt;
      &amp;lt;/param&amp;gt;&lt;/CODE&gt;&lt;BR /&gt;
after the viewstate adapter, and &lt;BR /&gt;
              &lt;CODE&gt;&amp;lt;param name="charting.chart.sliceCollapsingThreshold"&amp;gt;0&amp;lt;/param&amp;gt;&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;as a param of the chart.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Apr 2012 15:54:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Getting-rid-of-quot-other-quot-in-pie-chart/m-p/20168#M153</guid>
      <dc:creator>MHibbin</dc:creator>
      <dc:date>2012-04-05T15:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: Getting rid of "other" in pie chart</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Getting-rid-of-quot-other-quot-in-pie-chart/m-p/20169#M154</link>
      <description>&lt;P&gt;Thanks, Matt! I'll try this out and let you know how it turns out.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Apr 2012 16:54:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Getting-rid-of-quot-other-quot-in-pie-chart/m-p/20169#M154</guid>
      <dc:creator>Nicholas_Key</dc:creator>
      <dc:date>2012-04-05T16:54:37Z</dc:date>
    </item>
    <item>
      <title>Re: Getting rid of "other" in pie chart</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Getting-rid-of-quot-other-quot-in-pie-chart/m-p/20170#M155</link>
      <description>&lt;P&gt;OK cool, hopefully it works for you!&lt;/P&gt;</description>
      <pubDate>Thu, 05 Apr 2012 17:27:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Getting-rid-of-quot-other-quot-in-pie-chart/m-p/20170#M155</guid>
      <dc:creator>MHibbin</dc:creator>
      <dc:date>2012-04-05T17:27:34Z</dc:date>
    </item>
    <item>
      <title>Re: Getting rid of "other" in pie chart</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Getting-rid-of-quot-other-quot-in-pie-chart/m-p/20171#M156</link>
      <description>&lt;P&gt;This will work (adapting to your indices, fields, etc)&lt;/P&gt;

&lt;P&gt;index=linuxfirewall IN=eth3 PROTO=TCP | top DPT | chart  count by DPT&lt;/P&gt;

&lt;P&gt;The top command limits what you get and drops the 'other' aggregation. &lt;/P&gt;</description>
      <pubDate>Sat, 21 Apr 2012 01:31:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Getting-rid-of-quot-other-quot-in-pie-chart/m-p/20171#M156</guid>
      <dc:creator>notme_given</dc:creator>
      <dc:date>2012-04-21T01:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: Getting rid of "other" in pie chart</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Getting-rid-of-quot-other-quot-in-pie-chart/m-p/20172#M157</link>
      <description>&lt;P&gt;thank you very much! that's what am looking for. BTW what the difference between &lt;OBJECT&gt;&lt;PARAM /&gt; and \&lt;BR /&gt;
\0\&lt;BR /&gt;
working perfectly.&lt;/OBJECT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jul 2016 08:01:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Getting-rid-of-quot-other-quot-in-pie-chart/m-p/20172#M157</guid>
      <dc:creator>jujis008</dc:creator>
      <dc:date>2016-07-26T08:01:44Z</dc:date>
    </item>
    <item>
      <title>Re: Getting rid of "other" in pie chart</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Getting-rid-of-quot-other-quot-in-pie-chart/m-p/20173#M158</link>
      <description>&lt;P&gt;I edited the visualization to add this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;option name="charting.chart.sliceCollapsingThreshold"&amp;gt;0.01&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;But i did so through the UI by clicking on the "paint brush" above the pie chart when in edit mode and setting the "minimum size" to 0%.&lt;/P&gt;

&lt;P&gt;Doing that added the above to the dashboards xml.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 14:35:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Getting-rid-of-quot-other-quot-in-pie-chart/m-p/20173#M158</guid>
      <dc:creator>jkat54</dc:creator>
      <dc:date>2018-12-11T14:35:19Z</dc:date>
    </item>
  </channel>
</rss>

