<?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 to create a graph using columns and lines in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-a-graph-using-columns-and-lines/m-p/149936#M9098</link>
    <description>&lt;P&gt;Hi PabloCarvalho &lt;BR /&gt;
To solve your problem ,&lt;BR /&gt;
Firsly :&lt;/P&gt;

&lt;P&gt;Copy and paste the following  xml code in a view and save&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;your_view_name&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;chart&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt; index=_internal| timechart count as TARGET, count(eval(type="d")) as REACHED | eval %_REACHED=((REACHED*100)/TARGET)"  &amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;0&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="charting.chart"&amp;gt;column&amp;lt;/option&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;

&lt;P&gt;Secondly :&lt;BR /&gt;
Configure your chart in the oder to have a Chart overlay&lt;BR /&gt;
1- Click on edit tab  then check edit panels &lt;BR /&gt;
2-Click on  &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/384i5C547C91B3461F9F/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;  , check chart overlay then fill Overlay field by %_REACHED field. In Scale&lt;BR /&gt;
 field click on Linear tab &lt;/P&gt;

&lt;P&gt;3- Save the configuration and  click on Done&lt;/P&gt;</description>
    <pubDate>Mon, 15 Jun 2015 11:38:08 GMT</pubDate>
    <dc:creator>chimell</dc:creator>
    <dc:date>2015-06-15T11:38:08Z</dc:date>
    <item>
      <title>How to create a graph using columns and lines</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-a-graph-using-columns-and-lines/m-p/149934#M9096</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;I have three information, total (is my target), reached, and percentage of reached.&lt;/P&gt;

&lt;P&gt;I'm trying to create a graph using column (with TOTAL) and line (with PERCENTAGE OF REACHED), but I can't.&lt;/P&gt;

&lt;P&gt;The search is "internal_data | timechart count as TARGET, count(eval(type="d")) as REACHED | eval %_REACHED=((REACHED*100)/TARGET)"&lt;/P&gt;

&lt;P&gt;_time | TARGET | REACHED | %_REACHED&lt;BR /&gt;
6/10/15 | 3 | 3 | 100&lt;BR /&gt;
6/11/15 | 8 | 8 | 100&lt;BR /&gt;
6/12/15 | 24 | 24 | 100&lt;/P&gt;

&lt;P&gt;Can someone help with this using a simple or advantage XML?&lt;/P&gt;

&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 20:13:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-a-graph-using-columns-and-lines/m-p/149934#M9096</guid>
      <dc:creator>PabloCarvalho</dc:creator>
      <dc:date>2020-09-28T20:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a graph using columns and lines</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-a-graph-using-columns-and-lines/m-p/149935#M9097</link>
      <description>&lt;P&gt;If you want a columns graph, with a line overlay, check the graph options in the simpleXML UI editor.&lt;BR /&gt;
as long as the column exists in the result set, you can specify one of the series to be a line.&lt;/P&gt;</description>
      <pubDate>Sat, 13 Jun 2015 12:58:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-a-graph-using-columns-and-lines/m-p/149935#M9097</guid>
      <dc:creator>yannK</dc:creator>
      <dc:date>2015-06-13T12:58:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a graph using columns and lines</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-a-graph-using-columns-and-lines/m-p/149936#M9098</link>
      <description>&lt;P&gt;Hi PabloCarvalho &lt;BR /&gt;
To solve your problem ,&lt;BR /&gt;
Firsly :&lt;/P&gt;

&lt;P&gt;Copy and paste the following  xml code in a view and save&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;your_view_name&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;chart&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt; index=_internal| timechart count as TARGET, count(eval(type="d")) as REACHED | eval %_REACHED=((REACHED*100)/TARGET)"  &amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;0&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="charting.chart"&amp;gt;column&amp;lt;/option&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;

&lt;P&gt;Secondly :&lt;BR /&gt;
Configure your chart in the oder to have a Chart overlay&lt;BR /&gt;
1- Click on edit tab  then check edit panels &lt;BR /&gt;
2-Click on  &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/384i5C547C91B3461F9F/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;  , check chart overlay then fill Overlay field by %_REACHED field. In Scale&lt;BR /&gt;
 field click on Linear tab &lt;/P&gt;

&lt;P&gt;3- Save the configuration and  click on Done&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jun 2015 11:38:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-a-graph-using-columns-and-lines/m-p/149936#M9098</guid>
      <dc:creator>chimell</dc:creator>
      <dc:date>2015-06-15T11:38:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a graph using columns and lines</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-a-graph-using-columns-and-lines/m-p/149937#M9099</link>
      <description>&lt;P&gt;Hi  PabloCarvalho&lt;BR /&gt;
what about the answer above ? Let see if it satisfy you and tell&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jun 2015 07:34:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-a-graph-using-columns-and-lines/m-p/149937#M9099</guid>
      <dc:creator>chimell</dc:creator>
      <dc:date>2015-06-17T07:34:00Z</dc:date>
    </item>
  </channel>
</rss>

