<?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: is it possible to remove coulumn names in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/is-it-possible-to-remove-coulumn-names/m-p/40496#M43793</link>
    <description>&lt;P&gt;typically you would use the fields command in either the base search or in a postProcess search,  &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;`your existing search | fields - unwanted_field`
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If on the other hand the field in question is important for drilldown configurations,  but you don't want to actually display it to the end user,  you can use the Table module from Sideview Utils, which has a &lt;CODE&gt;hiddenFields&lt;/CODE&gt; param.   Fields hidden with the &lt;CODE&gt;hiddenFields&lt;/CODE&gt; param are still there and referenceable in drilldown logic,  but are not displayed to the end-user as a column. &lt;/P&gt;</description>
    <pubDate>Fri, 22 Feb 2013 11:52:19 GMT</pubDate>
    <dc:creator>sideview</dc:creator>
    <dc:date>2013-02-22T11:52:19Z</dc:date>
    <item>
      <title>is it possible to remove coulumn names</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/is-it-possible-to-remove-coulumn-names/m-p/40494#M43791</link>
      <description>&lt;P&gt;hi,&lt;BR /&gt;
is it possible to remove column names from a table?&lt;BR /&gt;
i dont want to rename it, just want it to be removed&lt;BR /&gt;
can i?&lt;BR /&gt;
please help&lt;BR /&gt;
Thanks for your time&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2013 11:33:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/is-it-possible-to-remove-coulumn-names/m-p/40494#M43791</guid>
      <dc:creator>smolcj</dc:creator>
      <dc:date>2013-02-22T11:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: is it possible to remove coulumn names</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/is-it-possible-to-remove-coulumn-names/m-p/40495#M43792</link>
      <description>&lt;P&gt;With css yes : &lt;/P&gt;

&lt;P&gt;table.splTable th {&lt;BR /&gt;
    display: none;&lt;BR /&gt;
}&lt;/P&gt;

&lt;P&gt;or with js :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;$("th:contains('Property')").empty();
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If you want to maintain the sorting ability but remove the label :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;$("th:contains('Property')&amp;gt;a&amp;gt;.sortLabel").html("&amp;amp;nbsp;");
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;You need to put this js in a &lt;A href="http://api.jquery.com/ajaxComplete/"&gt;ajaxComplete&lt;/A&gt; handler&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;Edit&lt;/STRONG&gt;  &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;# cat application.js

$(document).ajaxComplete( function() {
    $("th:contains('Property')&amp;gt;a&amp;gt;.sortLabel").html("&amp;amp;nbsp;");
});
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;IMG src="http://splunk-base.splunk.com//storage/no_property.png" alt="alt text" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2013 11:47:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/is-it-possible-to-remove-coulumn-names/m-p/40495#M43792</guid>
      <dc:creator>jonuwz</dc:creator>
      <dc:date>2013-02-22T11:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: is it possible to remove coulumn names</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/is-it-possible-to-remove-coulumn-names/m-p/40496#M43793</link>
      <description>&lt;P&gt;typically you would use the fields command in either the base search or in a postProcess search,  &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;`your existing search | fields - unwanted_field`
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If on the other hand the field in question is important for drilldown configurations,  but you don't want to actually display it to the end user,  you can use the Table module from Sideview Utils, which has a &lt;CODE&gt;hiddenFields&lt;/CODE&gt; param.   Fields hidden with the &lt;CODE&gt;hiddenFields&lt;/CODE&gt; param are still there and referenceable in drilldown logic,  but are not displayed to the end-user as a column. &lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2013 11:52:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/is-it-possible-to-remove-coulumn-names/m-p/40496#M43793</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2013-02-22T11:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: is it possible to remove coulumn names</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/is-it-possible-to-remove-coulumn-names/m-p/40497#M43794</link>
      <description>&lt;P&gt;thanks jonuwz, but wthat if i want certain column names to be skipped &lt;BR /&gt;
say skip all column names called Property??&lt;BR /&gt;
shall i use table.splTable th.Property{display:none;}&lt;BR /&gt;
please help&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2013 13:12:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/is-it-possible-to-remove-coulumn-names/m-p/40497#M43794</guid>
      <dc:creator>smolcj</dc:creator>
      <dc:date>2013-02-22T13:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: is it possible to remove coulumn names</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/is-it-possible-to-remove-coulumn-names/m-p/40498#M43795</link>
      <description>&lt;P&gt;i just want to skip the column name but i want to retain the values in it,&lt;BR /&gt;
as i am using many table with transpose i am getting row1,column1 and i renamed it to property value, but a number of propert , value is making my dashboard dirty.&lt;BR /&gt;
please, any other go?&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2013 13:12:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/is-it-possible-to-remove-coulumn-names/m-p/40498#M43795</guid>
      <dc:creator>smolcj</dc:creator>
      <dc:date>2013-02-22T13:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: is it possible to remove coulumn names</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/is-it-possible-to-remove-coulumn-names/m-p/40499#M43796</link>
      <description>&lt;P&gt;updated answer&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2013 13:42:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/is-it-possible-to-remove-coulumn-names/m-p/40499#M43796</guid>
      <dc:creator>jonuwz</dc:creator>
      <dc:date>2013-02-22T13:42:58Z</dc:date>
    </item>
    <item>
      <title>Re: is it possible to remove coulumn names</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/is-it-possible-to-remove-coulumn-names/m-p/40500#M43797</link>
      <description>&lt;P&gt;It sounds like maybe you don't want a table at all.  Check out the documentation for the HTML module in Sideview Utils.  If you know in advance what the fields and values are that you want to display, you can replace the whole thing with a piece of static HTML into which little dynamic $foo$ tokens are embedded.   There's a whole docs page jn there specifically about "using HTML module to replace SingleValue", and you can render all these key value pairs into any arbitrary HTML.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2013 16:32:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/is-it-possible-to-remove-coulumn-names/m-p/40500#M43797</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2013-02-22T16:32:40Z</dc:date>
    </item>
    <item>
      <title>Re: is it possible to remove coulumn names</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/is-it-possible-to-remove-coulumn-names/m-p/40501#M43798</link>
      <description>&lt;P&gt;i tried second option, i didn't find any difference.&lt;BR /&gt;
cleared cache as well as restarted splunk instance .&lt;/P&gt;</description>
      <pubDate>Mon, 25 Feb 2013 06:47:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/is-it-possible-to-remove-coulumn-names/m-p/40501#M43798</guid>
      <dc:creator>smolcj</dc:creator>
      <dc:date>2013-02-25T06:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: is it possible to remove coulumn names</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/is-it-possible-to-remove-coulumn-names/m-p/40502#M43799</link>
      <description>&lt;P&gt;next time, post your application.js. updated answer.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2013 22:27:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/is-it-possible-to-remove-coulumn-names/m-p/40502#M43799</guid>
      <dc:creator>jonuwz</dc:creator>
      <dc:date>2013-02-26T22:27:55Z</dc:date>
    </item>
    <item>
      <title>Re: is it possible to remove coulumn names</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/is-it-possible-to-remove-coulumn-names/m-p/40503#M43800</link>
      <description>&lt;P&gt;Thankss jonuwz,, is it possible to empty the space for heading also?&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2013 09:18:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/is-it-possible-to-remove-coulumn-names/m-p/40503#M43800</guid>
      <dc:creator>smolcj</dc:creator>
      <dc:date>2013-02-27T09:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: is it possible to remove coulumn names</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/is-it-possible-to-remove-coulumn-names/m-p/40504#M43801</link>
      <description>&lt;P&gt;What about a piece of JS to hide TDs from HTML tables?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jul 2013 09:46:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/is-it-possible-to-remove-coulumn-names/m-p/40504#M43801</guid>
      <dc:creator>stefano_guidoba</dc:creator>
      <dc:date>2013-07-24T09:46:36Z</dc:date>
    </item>
    <item>
      <title>Re: is it possible to remove coulumn names</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/is-it-possible-to-remove-coulumn-names/m-p/40505#M43802</link>
      <description>&lt;P&gt;If you want to hide an entire column worth of data, you should look at using the Sideview Table module, because it has a "hiddenFields" param.  Setting fields in that param makes those fields hidden from the screen,  but the dashboard still has access to all the hidden values for drilldown searches and drilldown logic.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jul 2013 02:38:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/is-it-possible-to-remove-coulumn-names/m-p/40505#M43802</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2013-07-25T02:38:00Z</dc:date>
    </item>
  </channel>
</rss>

