<?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: set y axis limit on bar chart in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/set-y-axis-limit-on-bar-chart/m-p/137037#M37530</link>
    <description>&lt;P&gt;I assume that the problem is that the &lt;CODE&gt;max&lt;/CODE&gt; is a "don't let it be smaller" rather than "don't let it be greater" limit (which is how I have always used it).  I am not sure how to do what you need short of using the search language to round your top values to your limit in the search itself.&lt;/P&gt;</description>
    <pubDate>Fri, 05 Jun 2015 15:10:00 GMT</pubDate>
    <dc:creator>woodcock</dc:creator>
    <dc:date>2015-06-05T15:10:00Z</dc:date>
    <item>
      <title>set y axis limit on bar chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/set-y-axis-limit-on-bar-chart/m-p/137031#M37524</link>
      <description>&lt;P&gt;I would like the max number of my Y axis to be 60.  I so have some numbers that are higher than 60 in my data, but I don't want them to scale the chart.  Instead I prefer the line just go off the chart.  I tried to do &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  &amp;lt;option name="charting.axisY2.maxiumNumber"&amp;gt;60&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;but this did not seem to work.&lt;/P&gt;

&lt;P&gt;I have also tried &lt;BR /&gt;
&amp;lt;option name="charting.axisY.scale"&amp;gt;log&amp;lt;/option&amp;gt;&lt;/P&gt;

&lt;P&gt;This help with the scaling, but would prefer something like option 1.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2015 13:05:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/set-y-axis-limit-on-bar-chart/m-p/137031#M37524</guid>
      <dc:creator>chadman</dc:creator>
      <dc:date>2015-06-05T13:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: set y axis limit on bar chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/set-y-axis-limit-on-bar-chart/m-p/137032#M37525</link>
      <description>&lt;P&gt;Perhaps you have a typo in your option 1.  It should be &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;option name="charting.axisY.maximumNumber"&amp;gt;60&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 05 Jun 2015 13:51:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/set-y-axis-limit-on-bar-chart/m-p/137032#M37525</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2015-06-05T13:51:47Z</dc:date>
    </item>
    <item>
      <title>Re: set y axis limit on bar chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/set-y-axis-limit-on-bar-chart/m-p/137033#M37526</link>
      <description>&lt;P&gt;This is what works on one of my charts:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;option name="charting.axisY.maximumNumber"&amp;gt;60&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 05 Jun 2015 14:09:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/set-y-axis-limit-on-bar-chart/m-p/137033#M37526</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-06-05T14:09:16Z</dc:date>
    </item>
    <item>
      <title>Re: set y axis limit on bar chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/set-y-axis-limit-on-bar-chart/m-p/137034#M37527</link>
      <description>&lt;P&gt;I use this, but still see the y axis scale going to 750.  Something I'm missing?  I do have number higher than 60, but I want the top of the scale to still be 60.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2015 14:56:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/set-y-axis-limit-on-bar-chart/m-p/137034#M37527</guid>
      <dc:creator>chadman</dc:creator>
      <dc:date>2015-06-05T14:56:51Z</dc:date>
    </item>
    <item>
      <title>Re: set y axis limit on bar chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/set-y-axis-limit-on-bar-chart/m-p/137035#M37528</link>
      <description>&lt;P&gt;Here is what I have.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;chart&amp;gt;
  &amp;lt;searchTemplate&amp;gt;sourcetype="_sort" host=$desktop$ | timechart avg(idle) as "Idle Time"&amp;lt;/searchTemplate&amp;gt;
  &amp;lt;title&amp;gt;Idle Time&amp;lt;/title&amp;gt;
  &amp;lt;option name="charting.axisTitleX.text"&amp;gt;Date&amp;lt;/option&amp;gt;
  &amp;lt;option name="charting.axisTitleY.text"&amp;gt;Idle Time&amp;lt;/option&amp;gt;
  &amp;lt;option name="charting.axisY.maxiumNumber"&amp;gt;60&amp;lt;/option&amp;gt;
  &amp;lt;option name="charting.chart"&amp;gt;line&amp;lt;/option&amp;gt;
  &amp;lt;option name="charting.primaryAxisTitle.text"/&amp;gt;

  &amp;lt;option name="displayRowNumbers"&amp;gt;true&amp;lt;/option&amp;gt;
&amp;lt;/chart&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;When I do this the Y axis still goes up to 700+ depending on the data&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2015 15:06:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/set-y-axis-limit-on-bar-chart/m-p/137035#M37528</guid>
      <dc:creator>chadman</dc:creator>
      <dc:date>2015-06-05T15:06:06Z</dc:date>
    </item>
    <item>
      <title>Re: set y axis limit on bar chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/set-y-axis-limit-on-bar-chart/m-p/137036#M37529</link>
      <description>&lt;P&gt;If you're using copy-and-paste to post your XML then you still have a typo.  There should be 4 m's in maximumNumber.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;option name="charting.axisY.maximumNumber"&amp;gt;60&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 05 Jun 2015 15:08:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/set-y-axis-limit-on-bar-chart/m-p/137036#M37529</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2015-06-05T15:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: set y axis limit on bar chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/set-y-axis-limit-on-bar-chart/m-p/137037#M37530</link>
      <description>&lt;P&gt;I assume that the problem is that the &lt;CODE&gt;max&lt;/CODE&gt; is a "don't let it be smaller" rather than "don't let it be greater" limit (which is how I have always used it).  I am not sure how to do what you need short of using the search language to round your top values to your limit in the search itself.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2015 15:10:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/set-y-axis-limit-on-bar-chart/m-p/137037#M37530</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-06-05T15:10:00Z</dc:date>
    </item>
    <item>
      <title>Re: set y axis limit on bar chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/set-y-axis-limit-on-bar-chart/m-p/137038#M37531</link>
      <description>&lt;P&gt;haha, that was it.  Look at the little things first.  Working now!&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2015 19:10:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/set-y-axis-limit-on-bar-chart/m-p/137038#M37531</guid>
      <dc:creator>chadman</dc:creator>
      <dc:date>2015-06-05T19:10:16Z</dc:date>
    </item>
  </channel>
</rss>

