<?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 Can I do a simple line graph? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-Can-I-do-a-simple-line-graph/m-p/580527#M47552</link>
    <description>&lt;P&gt;Can someone explain exactly what is happening when using untable?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 10 Jan 2022 22:45:24 GMT</pubDate>
    <dc:creator>sandyjov1</dc:creator>
    <dc:date>2022-01-10T22:45:24Z</dc:date>
    <item>
      <title>How Can I do a simple line graph?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-Can-I-do-a-simple-line-graph/m-p/248947#M15514</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;How Can I do a simple line graph, here is an example:&lt;/P&gt;

&lt;P&gt;I got four Fields ( Fruits, June, July, August), like this&lt;BR /&gt;
&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/694i0AB4A4C63B910079/image-size/large?v=v2&amp;amp;px=999" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;and I want on XAxis( June, July, August) and each fruit must be a serie, like this:&lt;BR /&gt;
&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/695i70E79EB2DA76101B/image-size/large?v=v2&amp;amp;px=999" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;So there is no time fields on this one, so probably I need to use |chart&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2015 15:28:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-Can-I-do-a-simple-line-graph/m-p/248947#M15514</guid>
      <dc:creator>bruno_eduardo</dc:creator>
      <dc:date>2015-09-29T15:28:35Z</dc:date>
    </item>
    <item>
      <title>Re: How Can I do a simple line graph?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-Can-I-do-a-simple-line-graph/m-p/248948#M15515</link>
      <description>&lt;P&gt;Assuming your data or base search gives a table like in the question, they try this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;your base search | table Fruits, June, July, August  | untable Fruits Months Value | chart first(Value) over Month by Fruits
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Use the line chart as visualization.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2015 16:29:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-Can-I-do-a-simple-line-graph/m-p/248948#M15515</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2015-09-29T16:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: How Can I do a simple line graph?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-Can-I-do-a-simple-line-graph/m-p/248949#M15516</link>
      <description>&lt;P&gt;search should have&lt;BR /&gt;
| timechart count by fruit&lt;/P&gt;

&lt;P&gt;to show line chart&lt;BR /&gt;
&amp;lt;option name="charting.chart"&amp;gt;line&amp;lt;/option&amp;gt;&lt;/P&gt;

&lt;P&gt;to split series&lt;BR /&gt;
&amp;lt;option name="charting.layout.splitSeries"&amp;gt;1&amp;lt;/option&amp;gt;&lt;/P&gt;

&lt;P&gt;to show independent Y-Axis ranges&lt;BR /&gt;
&amp;lt;option name="charting.layout.splitSeries.allowIndependentYRanges"&amp;gt;1&amp;lt;/option&amp;gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2015 17:02:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-Can-I-do-a-simple-line-graph/m-p/248949#M15516</guid>
      <dc:creator>afishkin_splunk</dc:creator>
      <dc:date>2015-09-29T17:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: How Can I do a simple line graph?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-Can-I-do-a-simple-line-graph/m-p/248950#M15517</link>
      <description>&lt;P&gt;That is it!!! well almost, the only thing is: How can I change the order of the months? because, right now is like August -&amp;gt; July -&amp;gt; June!! need to be  June -&amp;gt; July -&amp;gt; August.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2015 19:03:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-Can-I-do-a-simple-line-graph/m-p/248950#M15517</guid>
      <dc:creator>bruno_eduardo</dc:creator>
      <dc:date>2015-09-29T19:03:34Z</dc:date>
    </item>
    <item>
      <title>Re: How Can I do a simple line graph?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-Can-I-do-a-simple-line-graph/m-p/248951#M15518</link>
      <description>&lt;P&gt;I got it: | sort str(Months) desc&lt;/P&gt;

&lt;P&gt;Thank you very much, could you please explain every step?&lt;/P&gt;

&lt;P&gt;One more thing, you forgot to put 's'  on """""| chart first(Value) over Month"""", can you correct?, is better if someone falls here.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2015 19:33:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-Can-I-do-a-simple-line-graph/m-p/248951#M15518</guid>
      <dc:creator>bruno_eduardo</dc:creator>
      <dc:date>2015-09-29T19:33:09Z</dc:date>
    </item>
    <item>
      <title>Re: How Can I do a simple line graph?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-Can-I-do-a-simple-line-graph/m-p/580527#M47552</link>
      <description>&lt;P&gt;Can someone explain exactly what is happening when using untable?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jan 2022 22:45:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-Can-I-do-a-simple-line-graph/m-p/580527#M47552</guid>
      <dc:creator>sandyjov1</dc:creator>
      <dc:date>2022-01-10T22:45:24Z</dc:date>
    </item>
  </channel>
</rss>

