<?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 Is it possible to create a multivalue visualization for each value of a grouped field? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-create-a-multivalue-visualization-for-each/m-p/239475#M71138</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;I am trying to create a variable sized visualization based on the value of a field grouped by another field.  To explain what I mean, I have a table with temperatures:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;CITY,TEMP
Tokyo,6.67
New York,10.29
Rio de Janeiro,29.54
Bamako,32.56
Milano,9.27
Port Elizabeth,19.41
Norilsk,-24.43
Perth,16.72
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;What I would like to do is create a single visualization that gives me say, a single value or gauge, for each city.  I would like to avoid having to create a separate search for each city and add a separate visualization.  I'd just like to be able to create a single visualization that includes all values in a table.&lt;/P&gt;

&lt;P&gt;Is this possible?&lt;/P&gt;

&lt;P&gt;Thank you!&lt;/P&gt;

&lt;P&gt;Andrew&lt;/P&gt;</description>
    <pubDate>Sat, 26 Nov 2016 18:06:09 GMT</pubDate>
    <dc:creator>andrewtrobec</dc:creator>
    <dc:date>2016-11-26T18:06:09Z</dc:date>
    <item>
      <title>Is it possible to create a multivalue visualization for each value of a grouped field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-create-a-multivalue-visualization-for-each/m-p/239475#M71138</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;I am trying to create a variable sized visualization based on the value of a field grouped by another field.  To explain what I mean, I have a table with temperatures:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;CITY,TEMP
Tokyo,6.67
New York,10.29
Rio de Janeiro,29.54
Bamako,32.56
Milano,9.27
Port Elizabeth,19.41
Norilsk,-24.43
Perth,16.72
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;What I would like to do is create a single visualization that gives me say, a single value or gauge, for each city.  I would like to avoid having to create a separate search for each city and add a separate visualization.  I'd just like to be able to create a single visualization that includes all values in a table.&lt;/P&gt;

&lt;P&gt;Is this possible?&lt;/P&gt;

&lt;P&gt;Thank you!&lt;/P&gt;

&lt;P&gt;Andrew&lt;/P&gt;</description>
      <pubDate>Sat, 26 Nov 2016 18:06:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-create-a-multivalue-visualization-for-each/m-p/239475#M71138</guid>
      <dc:creator>andrewtrobec</dc:creator>
      <dc:date>2016-11-26T18:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to create a multivalue visualization for each value of a grouped field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-create-a-multivalue-visualization-for-each/m-p/239476#M71139</link>
      <description>&lt;P&gt;The lowest hanging fruit would be to take and adapt the "Tables with Data Bars" example from the Splunk 6.x Dashboard Examples app at &lt;A href="https://splunkbase.splunk.com/app/1603/"&gt;https://splunkbase.splunk.com/app/1603/&lt;/A&gt; / &lt;A href="http://localhost:8000/en-US/app/simple_xml_examples/custom_table_data_bar"&gt;http://localhost:8000/en-US/app/simple_xml_examples/custom_table_data_bar&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 26 Nov 2016 19:34:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-create-a-multivalue-visualization-for-each/m-p/239476#M71139</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2016-11-26T19:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to create a multivalue visualization for each value of a grouped field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-create-a-multivalue-visualization-for-each/m-p/239477#M71140</link>
      <description>&lt;P&gt;If the requirement is just to have a single visualization for all the cities how about trying this (selecting a bar chart)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;your query to return the City and temp
| chart values(temp) as Temp over City
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;which might look something like below:&lt;BR /&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/2170i8723BF2E4EB5006A/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;You can also use the option of &lt;CODE&gt;save as report&lt;/CODE&gt; and include &lt;CODE&gt;both the table and the graph&lt;/CODE&gt; while doing so.&lt;BR /&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/2171iB5BA6B2F4FC8A0D8/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;Updating as per comments&lt;/STRONG&gt;&lt;BR /&gt;
Additionally do the following:&lt;BR /&gt;
1) Rather than &lt;CODE&gt;bar graph&lt;/CODE&gt;, select &lt;CODE&gt;line graph&lt;/CODE&gt; as visualization.&lt;BR /&gt;
2) In Formatting click on &lt;CODE&gt;Genral &amp;gt; Show Data Values &amp;gt;&amp;gt; On&lt;/CODE&gt;&lt;BR /&gt;
3) In dashboard source xml, make the line chart to match the colour of the background &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; which is white &lt;CODE&gt;0xFFFFFF&lt;/CODE&gt; in this case by using &lt;CODE&gt;charting.seriesColors&lt;/CODE&gt; chart options:&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;&amp;lt;option name="charting.seriesColors"&amp;gt;[0xFFFFFF]&amp;lt;/option&amp;gt;&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;That should get the way you want it.&lt;/P&gt;</description>
      <pubDate>Sun, 27 Nov 2016 00:32:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-create-a-multivalue-visualization-for-each/m-p/239477#M71140</guid>
      <dc:creator>gokadroid</dc:creator>
      <dc:date>2016-11-27T00:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to create a multivalue visualization for each value of a grouped field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-create-a-multivalue-visualization-for-each/m-p/239478#M71141</link>
      <description>&lt;P&gt;Yes, I was also considering this, but it's not quite what I'm looking for.  If I can substitute the columns with just the value and remove the axis then it would be perfect!  Any way of doing that through dashboard formatting?&lt;/P&gt;</description>
      <pubDate>Sun, 27 Nov 2016 11:10:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-create-a-multivalue-visualization-for-each/m-p/239478#M71141</guid>
      <dc:creator>andrewtrobec</dc:creator>
      <dc:date>2016-11-27T11:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to create a multivalue visualization for each value of a grouped field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-create-a-multivalue-visualization-for-each/m-p/239479#M71142</link>
      <description>&lt;P&gt;I apologize but I cannot understand which "axis" are you trying to remove? Can you elaborate please? However both the other requirement of removing the bars and having the numbers can be achieved as follows:&lt;/P&gt;

&lt;P&gt;1) Rather than &lt;CODE&gt;bar graph&lt;/CODE&gt;, select &lt;CODE&gt;line graph&lt;/CODE&gt; as visualization.&lt;BR /&gt;
2) In Formatting click on &lt;CODE&gt;Genral &amp;gt; Show Data Values &amp;gt;&amp;gt; On&lt;/CODE&gt;&lt;BR /&gt;
3) In dashboard source xml, make the line chart to match the colour of the background &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; which is &lt;CODE&gt;white 0xFFFFFF&lt;/CODE&gt; in this case by using &lt;CODE&gt;charting.seriesColors&lt;/CODE&gt; chart options:&lt;BR /&gt;
&lt;CODE&gt;&amp;lt;option name="charting.seriesColors"&amp;gt;[0xFFFFFF]&amp;lt;/option&amp;gt;&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;The result should be close to what you require, the only thing I am not sure of is which axis you wanted to remove.&lt;/P&gt;

&lt;P&gt;Let me know if it helped.&lt;/P&gt;</description>
      <pubDate>Sun, 27 Nov 2016 17:30:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-create-a-multivalue-visualization-for-each/m-p/239479#M71142</guid>
      <dc:creator>gokadroid</dc:creator>
      <dc:date>2016-11-27T17:30:02Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to create a multivalue visualization for each value of a grouped field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-create-a-multivalue-visualization-for-each/m-p/239480#M71143</link>
      <description>&lt;P&gt;I followed your suggestions and managed to get this:&lt;/P&gt;

&lt;P&gt;&lt;IMG src="http://i.imgur.com/CZdXsyy.png" alt="alt text" /&gt;&lt;/P&gt;

&lt;P&gt;In terms of the axis, I wanted to get rid of the Y axis, or at least hide the values so they don't appear.  I was disappointed to know that versino 6.5.0 no longer allows you to change the label font and size... that would have been great.&lt;/P&gt;

&lt;P&gt;I guess this is the closest I'll get to what I was hoping to achieve, thanks!&lt;/P&gt;</description>
      <pubDate>Sun, 27 Nov 2016 21:29:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-create-a-multivalue-visualization-for-each/m-p/239480#M71143</guid>
      <dc:creator>andrewtrobec</dc:creator>
      <dc:date>2016-11-27T21:29:42Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to create a multivalue visualization for each value of a grouped field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-create-a-multivalue-visualization-for-each/m-p/239481#M71144</link>
      <description>&lt;P&gt;Thanks, If it helps resolve your issue , please accept the answer so this question can be closed. I am updating the answer with the recent comments that solved the question.&lt;/P&gt;</description>
      <pubDate>Sun, 27 Nov 2016 21:43:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-create-a-multivalue-visualization-for-each/m-p/239481#M71144</guid>
      <dc:creator>gokadroid</dc:creator>
      <dc:date>2016-11-27T21:43:18Z</dc:date>
    </item>
  </channel>
</rss>

