<?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 do I hide a field from a chart but keep it on a drilldown? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-hide-a-field-from-a-chart-but-keep-it-on-a-drilldown/m-p/384524#M25218</link>
    <description>&lt;P&gt;@igorsantos07 they are the default chart configurations that got added while preparing the run anywhere example. As you would have figured out, &lt;CODE&gt;&amp;lt;drilldown&amp;gt;&lt;/CODE&gt; is the only important section that I have modified. (Along with &lt;CODE&gt;&amp;lt;option name="charting.drilldown"&amp;gt;all&amp;lt;/option&amp;gt;&lt;/CODE&gt;)&lt;/P&gt;

&lt;P&gt;While providing run anywhere examples I tend to provide entire XML along with explanation of what is coded specifically for solving the problem. Taking out additional code is further work which I tend to avoid  to save time &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 20 Nov 2018 03:52:01 GMT</pubDate>
    <dc:creator>niketn</dc:creator>
    <dc:date>2018-11-20T03:52:01Z</dc:date>
    <item>
      <title>How do I hide a field from a chart but keep it on a drilldown?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-hide-a-field-from-a-chart-but-keep-it-on-a-drilldown/m-p/384515#M25209</link>
      <description>&lt;P&gt;I have a Dashboard with a graph and a drilldown table underneath it. The graph shows on the x-axis an eval field (concat of two strings), and I need those two strings on the drilldown table. However, if I hide those fields from the graph they don't get filled in the drilldown tokens, and if they're displayed, they make no sense on the graph.&lt;/P&gt;

&lt;P&gt;I think it could also work, although it's a bit ugly. I could split the concatenated value into two tokens to be used in the drilldown search query, but I can't find how to do it.&lt;/P&gt;

&lt;P&gt;Sample code:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  &amp;lt;chart&amp;gt;
    &amp;lt;search&amp;gt;
      &amp;lt;query&amp;gt;
        source="query.log" ac=main
        | stats AVG(time) as time, p95(time) as perc by controller, action
        | eval form=controller."/".action
        | sort -perc
        | fields form, time, perc, controller, action &amp;lt;!-- wanted to hide controller and action from graph --&amp;gt;
      &amp;lt;/query&amp;gt;
    &amp;lt;/search&amp;gt;
    &amp;lt;drilldown&amp;gt;
      &amp;lt;set token="main_form"&amp;gt;$row.form$&amp;lt;/set&amp;gt;
      &amp;lt;set token="main_controller"&amp;gt;$row.controller$&amp;lt;/set&amp;gt;&amp;lt;!-- isn't filled if hidden at "fields" --&amp;gt;
      &amp;lt;set token="main_action"&amp;gt;$row.action&amp;lt;/set&amp;gt;&amp;lt;!-- isn't filled if hidden at "fields" --&amp;gt;
    &amp;lt;/drilldown&amp;gt;
  &amp;lt;/chart&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Current result (with renamed fields and whatnot); ac/controller and af/action shouldn't be on the graph, but present on query so they can be used on drilldown:&lt;/P&gt;

&lt;P&gt;&lt;IMG src="https://i.imgur.com/vvepRN1.png" alt="sample" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Nov 2018 00:25:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-hide-a-field-from-a-chart-but-keep-it-on-a-drilldown/m-p/384515#M25209</guid>
      <dc:creator>igorsantos07</dc:creator>
      <dc:date>2018-11-14T00:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: How do I hide a field from a chart but keep it on a drilldown?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-hide-a-field-from-a-chart-but-keep-it-on-a-drilldown/m-p/384516#M25210</link>
      <description>&lt;P&gt;@igorsantos07,&lt;/P&gt;

&lt;P&gt;Rename the controller and action to _controller and _action and use those field names in the drill down&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| fields form, time, perc, controller, action|rename controller as _controller,action as _action
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Tokens&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;       &amp;lt;set token="main_controller"&amp;gt;$row._controller$&amp;lt;/set&amp;gt;
       &amp;lt;set token="main_action"&amp;gt;$row._action&amp;lt;/set&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Here is a run anywhere example where _EmpId is not visible in table but the token is assigned with the _EmpId value&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;Dashboard With Hidden Drilldown&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| makeresults count=5|eval Name="ABC"| streamstats count as _EmpId&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-1s@s&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;cell&amp;lt;/option&amp;gt;
        &amp;lt;drilldown&amp;gt;
          &amp;lt;set token="empid"&amp;gt;$row._EmpId$&amp;lt;/set&amp;gt;
        &amp;lt;/drilldown&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;html&amp;gt;
      &amp;lt;h1&amp;gt; Emp Id from drilldown is &amp;lt;font color="red"&amp;gt;$empid$&amp;lt;/font&amp;gt;&amp;lt;/h1&amp;gt;
    &amp;lt;/html&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 14 Nov 2018 05:39:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-hide-a-field-from-a-chart-but-keep-it-on-a-drilldown/m-p/384516#M25210</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2018-11-14T05:39:02Z</dc:date>
    </item>
    <item>
      <title>Re: How do I hide a field from a chart but keep it on a drilldown?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-hide-a-field-from-a-chart-but-keep-it-on-a-drilldown/m-p/384517#M25211</link>
      <description>&lt;P&gt;Wow! That old trick of "hiding" variables by using an underline prefix. Where would I find that in the docs? This should be hinted somewhere, I visited a bunch of answers and docs and whatnot and didn't find info on that.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Nov 2018 22:34:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-hide-a-field-from-a-chart-but-keep-it-on-a-drilldown/m-p/384517#M25211</guid>
      <dc:creator>igorsantos07</dc:creator>
      <dc:date>2018-11-14T22:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: How do I hide a field from a chart but keep it on a drilldown?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-hide-a-field-from-a-chart-but-keep-it-on-a-drilldown/m-p/384518#M25212</link>
      <description>&lt;P&gt;Actually, that didn't work for the drilldown. The fields got, indeed, hidden from the chart, but they still doesn't go into the tokens. If I take the underline both from the query (i.e. renaming to something else) and the &lt;CODE&gt;$row.xyz$&lt;/CODE&gt; part, it works, but the field gets back onto the chart. It's the same behavior I reported initially.&lt;/P&gt;

&lt;P&gt;&lt;IMG src="https://i.imgur.com/i4zkQzZ.png" alt="tokens" /&gt;&lt;/P&gt;

&lt;P&gt;This was supposed to be fed by the tokens, but they only get the raw variable names - which I guess are the initial values:&lt;BR /&gt;
&lt;IMG src="https://i.imgur.com/tR5LKcl.png" alt="alt text" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Nov 2018 02:13:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-hide-a-field-from-a-chart-but-keep-it-on-a-drilldown/m-p/384518#M25212</guid>
      <dc:creator>igorsantos07</dc:creator>
      <dc:date>2018-11-15T02:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: How do I hide a field from a chart but keep it on a drilldown?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-hide-a-field-from-a-chart-but-keep-it-on-a-drilldown/m-p/384519#M25213</link>
      <description>&lt;P&gt;@igorsantos07, did the sample xml dashboard work for you ? Can you please try that ? Which visualization you are using ? &lt;/P&gt;</description>
      <pubDate>Thu, 15 Nov 2018 03:20:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-hide-a-field-from-a-chart-but-keep-it-on-a-drilldown/m-p/384519#M25213</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2018-11-15T03:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: How do I hide a field from a chart but keep it on a drilldown?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-hide-a-field-from-a-chart-but-keep-it-on-a-drilldown/m-p/384520#M25214</link>
      <description>&lt;P&gt;Ok if you are using a chart, then the _field might not work . Simple CSS workaround could be an option &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  &amp;lt;row&amp;gt;
       &amp;lt;html depends="$dummyPanelForCSS$"&amp;gt;
         &amp;lt;style&amp;gt;
           #myChartId g.highcharts-legend-item:nth-child(3)
           {
               visibility: hidden !important;
           }
         &amp;lt;/style&amp;gt;
       &amp;lt;/html&amp;gt;
  &amp;lt;/row&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and add &lt;CODE&gt;myChartId&lt;/CODE&gt; to your chart &lt;CODE&gt;chart id="myChartId"&lt;/CODE&gt; &lt;/P&gt;

&lt;P&gt;Example : &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;Dashboard With Hidden Drilldown&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
       &amp;lt;html depends="$dummyPanelForCSS$"&amp;gt;
         &amp;lt;style&amp;gt;
           #myChart g.highcharts-legend-item:nth-child(3)
           {
               visibility: hidden !important;
           }
         &amp;lt;/style&amp;gt;
       &amp;lt;/html&amp;gt;
  &amp;lt;/row&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;chart id="myChart"&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index=_*|stats count by index,sourcetype|eventstats sum(count) as _total|eval perc=round((count/_total)*100,0)."%"&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-1m@m&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;drilldown&amp;gt;
          &amp;lt;set token="empid"&amp;gt;$row.perc$&amp;lt;/set&amp;gt;
        &amp;lt;/drilldown&amp;gt;
      &amp;lt;/chart&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html&amp;gt;
      &amp;lt;h1&amp;gt; Emp Id from drilldown is &amp;lt;font color="red"&amp;gt;$empid$&amp;lt;/font&amp;gt;
        &amp;lt;/h1&amp;gt;
    &amp;lt;/html&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>Thu, 15 Nov 2018 07:44:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-hide-a-field-from-a-chart-but-keep-it-on-a-drilldown/m-p/384520#M25214</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2018-11-15T07:44:04Z</dc:date>
    </item>
    <item>
      <title>Re: How do I hide a field from a chart but keep it on a drilldown?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-hide-a-field-from-a-chart-but-keep-it-on-a-drilldown/m-p/384521#M25215</link>
      <description>&lt;P&gt;@igorsantos07 seems like the &lt;CODE&gt;form&lt;/CODE&gt; field that you have in your chart combines both &lt;CODE&gt;controller&lt;/CODE&gt; and &lt;CODE&gt;action&lt;/CODE&gt; fields. So you can use form field value on drilldown and use eval to split them into controller and action.&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/6078i71C7AF3B1DC89A26/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;BR /&gt;
Following is a run anywhere Simple XML Dashboard Example based on Splunk's &lt;CODE&gt;_internal&lt;/CODE&gt; index. It uses &lt;CODE&gt;component&lt;/CODE&gt; and &lt;CODE&gt;log_level&lt;/CODE&gt; fields to create &lt;CODE&gt;form&lt;/CODE&gt; field. Only &lt;CODE&gt;form&lt;/CODE&gt; field is displayed in the chart. Then using &lt;CODE&gt;&amp;lt;eval&amp;gt;&lt;/CODE&gt; it splits form back to &lt;CODE&gt;component&lt;/CODE&gt; and &lt;CODE&gt;log_level&lt;/CODE&gt; tokens for drilldown.&lt;/P&gt;

&lt;P&gt;Please try out and confirm!&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;Chart Drilldown&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;title&amp;gt;tokComponent: $tokComponent$ | tokLogLevel: $tokLogLevel$&amp;lt;/title&amp;gt;
      &amp;lt;chart&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index=_internal sourcetype=splunkd component=* log_level=* 
| stats avg(date_second) as time, p95(date_second) as perc by component, log_level 
| eval form=component."/".log_level 
| sort -perc 
| fields form, time, perc&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="charting.axisLabelsX.majorLabelStyle.overflowMode"&amp;gt;ellipsisNone&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisLabelsX.majorLabelStyle.rotation"&amp;gt;-45&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisTitleX.visibility"&amp;gt;visible&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisTitleY.visibility"&amp;gt;visible&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisTitleY2.visibility"&amp;gt;visible&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisX.abbreviation"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisX.scale"&amp;gt;linear&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisY.abbreviation"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisY.scale"&amp;gt;linear&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisY2.abbreviation"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisY2.enabled"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisY2.scale"&amp;gt;inherit&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart"&amp;gt;area&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.bubbleMaximumSize"&amp;gt;50&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.bubbleMinimumSize"&amp;gt;10&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.bubbleSizeBy"&amp;gt;area&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.nullValueMode"&amp;gt;gaps&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.showDataLabels"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.sliceCollapsingThreshold"&amp;gt;0.01&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.stackMode"&amp;gt;default&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.style"&amp;gt;shiny&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.drilldown"&amp;gt;all&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.layout.splitSeries"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.layout.splitSeries.allowIndependentYRanges"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.legend.labelStyle.overflowMode"&amp;gt;ellipsisMiddle&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.legend.mode"&amp;gt;standard&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.legend.placement"&amp;gt;right&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.lineWidth"&amp;gt;2&amp;lt;/option&amp;gt;
        &amp;lt;option name="height"&amp;gt;409&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;drilldown&amp;gt;
          &amp;lt;eval token="tokComponent"&amp;gt;mvindex(split($row.form$,"/"),0)&amp;lt;/eval&amp;gt;
          &amp;lt;eval token="tokLogLevel"&amp;gt;mvindex(split($row.form$,"/"),1)&amp;lt;/eval&amp;gt;
        &amp;lt;/drilldown&amp;gt;
      &amp;lt;/chart&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>Sat, 17 Nov 2018 17:46:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-hide-a-field-from-a-chart-but-keep-it-on-a-drilldown/m-p/384521#M25215</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-11-17T17:46:52Z</dc:date>
    </item>
    <item>
      <title>Re: How do I hide a field from a chart but keep it on a drilldown?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-hide-a-field-from-a-chart-but-keep-it-on-a-drilldown/m-p/384522#M25216</link>
      <description>&lt;P&gt;aha! I knew there must be a split somewhere! thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Nov 2018 22:48:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-hide-a-field-from-a-chart-but-keep-it-on-a-drilldown/m-p/384522#M25216</guid>
      <dc:creator>igorsantos07</dc:creator>
      <dc:date>2018-11-19T22:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: How do I hide a field from a chart but keep it on a drilldown?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-hide-a-field-from-a-chart-but-keep-it-on-a-drilldown/m-p/384523#M25217</link>
      <description>&lt;P&gt;I would only suggest you remove all those chart options that are not relevant to the question I asked &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Nov 2018 22:55:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-hide-a-field-from-a-chart-but-keep-it-on-a-drilldown/m-p/384523#M25217</guid>
      <dc:creator>igorsantos07</dc:creator>
      <dc:date>2018-11-19T22:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: How do I hide a field from a chart but keep it on a drilldown?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-hide-a-field-from-a-chart-but-keep-it-on-a-drilldown/m-p/384524#M25218</link>
      <description>&lt;P&gt;@igorsantos07 they are the default chart configurations that got added while preparing the run anywhere example. As you would have figured out, &lt;CODE&gt;&amp;lt;drilldown&amp;gt;&lt;/CODE&gt; is the only important section that I have modified. (Along with &lt;CODE&gt;&amp;lt;option name="charting.drilldown"&amp;gt;all&amp;lt;/option&amp;gt;&lt;/CODE&gt;)&lt;/P&gt;

&lt;P&gt;While providing run anywhere examples I tend to provide entire XML along with explanation of what is coded specifically for solving the problem. Taking out additional code is further work which I tend to avoid  to save time &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Nov 2018 03:52:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-hide-a-field-from-a-chart-but-keep-it-on-a-drilldown/m-p/384524#M25218</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-11-20T03:52:01Z</dc:date>
    </item>
  </channel>
</rss>

