<?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: Using Chart Visualisation in classic dashboard need show result in Y-axis in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Using-Chart-Visualisation-in-classic-dashboard-need-show-result/m-p/706041#M57836</link>
    <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/49493"&gt;@tscroggins&lt;/a&gt;&amp;nbsp;Thanks for your answer and spending your time, even if we use makeresults , at every point we need to&amp;nbsp; mention that CSV data ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 05 Dec 2024 16:55:27 GMT</pubDate>
    <dc:creator>siva_kumar0147</dc:creator>
    <dc:date>2024-12-05T16:55:27Z</dc:date>
    <item>
      <title>Using Chart Visualisation in classic dashboard need show result in Y-axis</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Using-Chart-Visualisation-in-classic-dashboard-need-show-result/m-p/705475#M57793</link>
      <description>&lt;P&gt;Hi all,&lt;BR /&gt;&lt;BR /&gt;I am having two fields as eventfield2and eventfield3with values of eventfield3= LHCP , RHCP ,LHCP &amp;amp;&amp;nbsp;values of eventfield2= RHCP , RHCP ,LHCP . I want a result like as shown .&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="siva_kumar0147_0-1732789623367.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/33617i9D25C6143D009FFD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="siva_kumar0147_0-1732789623367.png" alt="siva_kumar0147_0-1732789623367.png" /&gt;&lt;/span&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Thanks for your time in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Nov 2024 10:30:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Using-Chart-Visualisation-in-classic-dashboard-need-show-result/m-p/705475#M57793</guid>
      <dc:creator>siva_kumar0147</dc:creator>
      <dc:date>2024-11-28T10:30:02Z</dc:date>
    </item>
    <item>
      <title>Re: Using Chart Visualisation in classic dashboard need show result in Y-axis</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Using-Chart-Visualisation-in-classic-dashboard-need-show-result/m-p/705477#M57795</link>
      <description>&lt;P&gt;Charts have numeric scales for the y-axis except things like bubble charts but then the values are numeric so it is unlikely that you can get a chart as you proposed - what are you trying to show (there may be alternative ways of representing the data)&lt;/P&gt;</description>
      <pubDate>Thu, 28 Nov 2024 11:16:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Using-Chart-Visualisation-in-classic-dashboard-need-show-result/m-p/705477#M57795</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2024-11-28T11:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: Using Chart Visualisation in classic dashboard need show result in Y-axis</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Using-Chart-Visualisation-in-classic-dashboard-need-show-result/m-p/705511#M57796</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/273167"&gt;@siva_kumar0147&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;The simplest solution is to use the &lt;A href="https://splunkbase.splunk.com/app/3120" target="_self"&gt;Timeline&lt;/A&gt; visualization. You'll need to calculation durations in milliseconds between transitions:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;| makeresults format=csv data="_time,direction,polarization
1732782870,TX,L
1732782870,RX,R
1732781700,TX,R
1732781700,RX,L"
| sort 0 - _time + direction
| eval polarization=case(polarization=="L", "LHCP", polarization=="R", "RHCP")
| streamstats global=f window=2 first(_time) as end_time by direction
| addinfo
| eval duration=if(end_time==_time, 1000*(info_max_time-_time), 1000*(end_time-_time))
| table _time direction polarization duration&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tscroggins_0-1732815134381.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/33621i16CF97F09C1D3CC9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tscroggins_0-1732815134381.png" alt="tscroggins_0-1732815134381.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Nov 2024 17:33:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Using-Chart-Visualisation-in-classic-dashboard-need-show-result/m-p/705511#M57796</guid>
      <dc:creator>tscroggins</dc:creator>
      <dc:date>2024-11-28T17:33:50Z</dc:date>
    </item>
    <item>
      <title>Re: Using Chart Visualisation in classic dashboard need show result in Y-axis</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Using-Chart-Visualisation-in-classic-dashboard-need-show-result/m-p/706040#M57835</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;thanks for your time , we can replace L &amp;amp; R values with some number like L as 9 and R as 10&lt;BR /&gt;, then we can make it visualise.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2024 16:52:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Using-Chart-Visualisation-in-classic-dashboard-need-show-result/m-p/706040#M57835</guid>
      <dc:creator>siva_kumar0147</dc:creator>
      <dc:date>2024-12-05T16:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: Using Chart Visualisation in classic dashboard need show result in Y-axis</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Using-Chart-Visualisation-in-classic-dashboard-need-show-result/m-p/706041#M57836</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/49493"&gt;@tscroggins&lt;/a&gt;&amp;nbsp;Thanks for your answer and spending your time, even if we use makeresults , at every point we need to&amp;nbsp; mention that CSV data ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2024 16:55:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Using-Chart-Visualisation-in-classic-dashboard-need-show-result/m-p/706041#M57836</guid>
      <dc:creator>siva_kumar0147</dc:creator>
      <dc:date>2024-12-05T16:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: Using Chart Visualisation in classic dashboard need show result in Y-axis</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Using-Chart-Visualisation-in-classic-dashboard-need-show-result/m-p/706238#M57841</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/273167"&gt;@siva_kumar0147&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;No, I only use makeresults to generate sample data. The logic from the sort command down drives the visualization.&lt;/P&gt;</description>
      <pubDate>Sat, 07 Dec 2024 16:19:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Using-Chart-Visualisation-in-classic-dashboard-need-show-result/m-p/706238#M57841</guid>
      <dc:creator>tscroggins</dc:creator>
      <dc:date>2024-12-07T16:19:50Z</dc:date>
    </item>
  </channel>
</rss>

