<?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 How do you specify an x axis interval on a non time based line chart? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-specify-an-x-axis-interval-on-a-non-time-based-line/m-p/444945#M42421</link>
    <description>&lt;P&gt;I've created a chart using the search: base search | chart values(y) over x&lt;/P&gt;

&lt;P&gt;It charts perfectly except for the fact that there isn't an interval for the x axis, and I haven't been able to find a way to edit in an interval through UI options or XML editing.&lt;/P&gt;

&lt;P&gt;Is it even possible to have intervals on the x axis if it's not time based? And if it's possible how?&lt;/P&gt;</description>
    <pubDate>Wed, 20 Mar 2019 06:30:37 GMT</pubDate>
    <dc:creator>preacher_15</dc:creator>
    <dc:date>2019-03-20T06:30:37Z</dc:date>
    <item>
      <title>How do you specify an x axis interval on a non time based line chart?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-specify-an-x-axis-interval-on-a-non-time-based-line/m-p/444945#M42421</link>
      <description>&lt;P&gt;I've created a chart using the search: base search | chart values(y) over x&lt;/P&gt;

&lt;P&gt;It charts perfectly except for the fact that there isn't an interval for the x axis, and I haven't been able to find a way to edit in an interval through UI options or XML editing.&lt;/P&gt;

&lt;P&gt;Is it even possible to have intervals on the x axis if it's not time based? And if it's possible how?&lt;/P&gt;</description>
      <pubDate>Wed, 20 Mar 2019 06:30:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-specify-an-x-axis-interval-on-a-non-time-based-line/m-p/444945#M42421</guid>
      <dc:creator>preacher_15</dc:creator>
      <dc:date>2019-03-20T06:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: How do you specify an x axis interval on a non time based line chart?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-specify-an-x-axis-interval-on-a-non-time-based-line/m-p/444946#M42422</link>
      <description>&lt;P&gt;can you elaborate a little?&lt;BR /&gt;
what is the desired chart should look like? are you looking for example to have a column (bar) with 0 values between bars with values if for example for x=1 y=10 and for x=3 y=20 but there arent any values for x=2 ?&lt;/P&gt;</description>
      <pubDate>Sun, 24 Mar 2019 01:35:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-specify-an-x-axis-interval-on-a-non-time-based-line/m-p/444946#M42422</guid>
      <dc:creator>adonio</dc:creator>
      <dc:date>2019-03-24T01:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: How do you specify an x axis interval on a non time based line chart?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-specify-an-x-axis-interval-on-a-non-time-based-line/m-p/444947#M42423</link>
      <description>&lt;P&gt;Hi @adonio what i want is to provide an interval for x axis. suppose if x axis represents percentage i want the x axis scale to show 0,10,20,30......100% with 10% interval.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Mar 2019 07:39:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-specify-an-x-axis-interval-on-a-non-time-based-line/m-p/444947#M42423</guid>
      <dc:creator>sajjanshetty15</dc:creator>
      <dc:date>2019-03-25T07:39:54Z</dc:date>
    </item>
    <item>
      <title>Re: How do you specify an x axis interval on a non time based line chart?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-specify-an-x-axis-interval-on-a-non-time-based-line/m-p/444948#M42424</link>
      <description>&lt;P&gt;Hi @adonio  what i want is to to plot a chart with x axis as percentage and y axis as budget. the axis scale should be 0,10,20,....100% with 10% interval. Iam not able to specify this interval in UI edit page..is there a way where i can achieve this?&lt;/P&gt;</description>
      <pubDate>Mon, 25 Mar 2019 07:44:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-specify-an-x-axis-interval-on-a-non-time-based-line/m-p/444948#M42424</guid>
      <dc:creator>sajjanshetty15</dc:creator>
      <dc:date>2019-03-25T07:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: How do you specify an x axis interval on a non time based line chart?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-specify-an-x-axis-interval-on-a-non-time-based-line/m-p/444949#M42425</link>
      <description>&lt;P&gt;can you share some events to better understand what your data looks like?&lt;BR /&gt;
this works well for me:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults count=1
| eval percent = "0,10,20,30,40,50,60,70,80,90,100"
| makemv delim="," percent
| mvexpand percent
| eval values = random()%10000
| chart sum(values) as budget over percent
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 29 Mar 2019 18:13:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-specify-an-x-axis-interval-on-a-non-time-based-line/m-p/444949#M42425</guid>
      <dc:creator>adonio</dc:creator>
      <dc:date>2019-03-29T18:13:12Z</dc:date>
    </item>
  </channel>
</rss>

