<?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: Two Y-axis graph: same line showing twice in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Two-Y-axis-graph-same-line-showing-twice/m-p/32328#M178181</link>
    <description>&lt;P&gt;You have a type-o&lt;BR /&gt;
s/columms/columns&lt;/P&gt;

&lt;P&gt;All data sets/columns are being charted on both Y axis and Y2 axis.&lt;/P&gt;</description>
    <pubDate>Fri, 25 Oct 2013 16:59:06 GMT</pubDate>
    <dc:creator>rizzo75</dc:creator>
    <dc:date>2013-10-25T16:59:06Z</dc:date>
    <item>
      <title>Two Y-axis graph: same line showing twice</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Two-Y-axis-graph-same-line-showing-twice/m-p/32324#M178177</link>
      <description>&lt;P&gt;I'm building a dashboard using the techniques described &lt;A href="http://splunk-base.splunk.com/answers/9053/example-of-chart-overlay"&gt;here on Splunkbase&lt;/A&gt;, so that I have two Y axes. What I'm seeing, however, is that there are two lines drawn for one of the data series. The legend only shows three sources. The second copy of the line hugs the X-axis line (as though it had Y value of zero). Attached is a screenshot. I can provide a sample of the XML, as well.&lt;IMG src="http://splunk-base.splunk.com//storage/ghost_line.png" alt="Ghost Line" /&gt;&lt;/P&gt;

&lt;PRE&gt;
                          &amp;lt;param name="charting.data1.table"&amp;gt;@data&amp;lt;/param&amp;gt;
                          &amp;lt;param name="charting.data2.table"&amp;gt;@data&amp;lt;/param&amp;gt;
                          &amp;lt;param name="charting.data1.columms"&amp;gt;[0,1,2]&amp;lt;/param&amp;gt;
                          &amp;lt;param name="charting.data2.columms"&amp;gt;[0,3]&amp;lt;/param&amp;gt;
                          &amp;lt;param name="charting.chart.data"&amp;gt;@data1&amp;lt;/param&amp;gt;
                          &amp;lt;param name="charting.chart2.data"&amp;gt;@data2&amp;lt;/param&amp;gt;
                          &amp;lt;param name="charting.data1"&amp;gt;view&amp;lt;/param&amp;gt;
                          &amp;lt;param name="charting.data2"&amp;gt;view&amp;lt;/param&amp;gt;


&lt;/PRE&gt;</description>
      <pubDate>Tue, 14 May 2013 02:38:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Two-Y-axis-graph-same-line-showing-twice/m-p/32324#M178177</guid>
      <dc:creator>sowings</dc:creator>
      <dc:date>2013-05-14T02:38:48Z</dc:date>
    </item>
    <item>
      <title>Re: Two Y-axis graph: same line showing twice</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Two-Y-axis-graph-same-line-showing-twice/m-p/32325#M178178</link>
      <description>&lt;P&gt;The problem is a matter of scale. Add these:&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;&lt;BR /&gt;
&amp;lt;param name="charting.axisY2.minimumNumber"&amp;gt;0&amp;lt;/param&amp;gt;&lt;BR /&gt;
&amp;lt;param name="charting.axisY2.maximumNumber"&amp;gt;1000000000&amp;lt;/param&amp;gt;&lt;BR /&gt;
&amp;lt;param name="charting.axisY2.scale"&amp;gt;log&amp;lt;/param&amp;gt;&lt;BR /&gt;
&amp;lt;param name="charting.chart2.axisY"&amp;gt;@axisY2&amp;lt;/param&amp;gt;&lt;BR /&gt;
&amp;lt;param name="charting.chart.axisY"&amp;gt;@axisY2&amp;lt;/param&amp;gt;&lt;BR /&gt;
&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;These make sure that all the mins and maxes will line up, and will also present the data in "log" scale so that if the chart2 data is &amp;lt; 10 for example, it will still show correctly.&lt;/P&gt;</description>
      <pubDate>Tue, 14 May 2013 12:18:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Two-Y-axis-graph-same-line-showing-twice/m-p/32325#M178178</guid>
      <dc:creator>alacercogitatus</dc:creator>
      <dc:date>2013-05-14T12:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: Two Y-axis graph: same line showing twice</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Two-Y-axis-graph-same-line-showing-twice/m-p/32326#M178179</link>
      <description>&lt;P&gt;Ordinarily, you'd be right about an issue of scale. Omitted from my list of &amp;lt;param&amp;gt;s, however, was minimumNumber and maximumNumber for the second Y axis.&lt;/P&gt;

&lt;P&gt;That squiggly orange-red line is the requested object size &lt;EM&gt;on the second Y scale&lt;/EM&gt;. So, that much is doing the right thing. It's the shadow version of that line down hugging the X-axis that has me puzzled. Three sources, four lines. Any hints?&lt;/P&gt;</description>
      <pubDate>Tue, 14 May 2013 18:51:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Two-Y-axis-graph-same-line-showing-twice/m-p/32326#M178179</guid>
      <dc:creator>sowings</dc:creator>
      <dc:date>2013-05-14T18:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: Two Y-axis graph: same line showing twice</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Two-Y-axis-graph-same-line-showing-twice/m-p/32327#M178180</link>
      <description>&lt;P&gt;Could you pastebin the entire xml please?&lt;/P&gt;</description>
      <pubDate>Tue, 14 May 2013 19:07:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Two-Y-axis-graph-same-line-showing-twice/m-p/32327#M178180</guid>
      <dc:creator>alacercogitatus</dc:creator>
      <dc:date>2013-05-14T19:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: Two Y-axis graph: same line showing twice</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Two-Y-axis-graph-same-line-showing-twice/m-p/32328#M178181</link>
      <description>&lt;P&gt;You have a type-o&lt;BR /&gt;
s/columms/columns&lt;/P&gt;

&lt;P&gt;All data sets/columns are being charted on both Y axis and Y2 axis.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Oct 2013 16:59:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Two-Y-axis-graph-same-line-showing-twice/m-p/32328#M178181</guid>
      <dc:creator>rizzo75</dc:creator>
      <dc:date>2013-10-25T16:59:06Z</dc:date>
    </item>
  </channel>
</rss>

