<?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 I create Punchcard that sorts bins with color? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-create-Punchcard-that-sorts-bins-with-color/m-p/608448#M49910</link>
    <description>&lt;P&gt;Im trying to make a punchcard to visualize incoming issues per hour in the prvious week.&lt;BR /&gt;This is the result i get with the following code:&amp;nbsp;&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;
&lt;LI-CODE lang="markup"&gt;| eval issues="Issue Priority"
| stats count(issues) by date_hour date_wday&lt;/LI-CODE&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;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="splunk1.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/20890iDEE7F07B4AAF7F04/image-size/large?v=v2&amp;amp;px=999" role="button" title="splunk1.png" alt="splunk1.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="splunk2.png" style="width: 997px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/20892i9F506E938EDF3236/image-size/large?v=v2&amp;amp;px=999" role="button" title="splunk2.png" alt="splunk2.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;I really want to get more bins like on the right side so that i can assign values with color. E.g. 0&amp;lt;10 = green, 11&amp;lt;70 = yellow, 71&amp;lt;150=red.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Something i need to include?&lt;/P&gt;</description>
    <pubDate>Fri, 05 Aug 2022 14:43:06 GMT</pubDate>
    <dc:creator>splunkman</dc:creator>
    <dc:date>2022-08-05T14:43:06Z</dc:date>
    <item>
      <title>How do I create Punchcard that sorts bins with color?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-create-Punchcard-that-sorts-bins-with-color/m-p/608448#M49910</link>
      <description>&lt;P&gt;Im trying to make a punchcard to visualize incoming issues per hour in the prvious week.&lt;BR /&gt;This is the result i get with the following code:&amp;nbsp;&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;
&lt;LI-CODE lang="markup"&gt;| eval issues="Issue Priority"
| stats count(issues) by date_hour date_wday&lt;/LI-CODE&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;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="splunk1.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/20890iDEE7F07B4AAF7F04/image-size/large?v=v2&amp;amp;px=999" role="button" title="splunk1.png" alt="splunk1.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="splunk2.png" style="width: 997px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/20892i9F506E938EDF3236/image-size/large?v=v2&amp;amp;px=999" role="button" title="splunk2.png" alt="splunk2.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;I really want to get more bins like on the right side so that i can assign values with color. E.g. 0&amp;lt;10 = green, 11&amp;lt;70 = yellow, 71&amp;lt;150=red.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Something i need to include?&lt;/P&gt;</description>
      <pubDate>Fri, 05 Aug 2022 14:43:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-create-Punchcard-that-sorts-bins-with-color/m-p/608448#M49910</guid>
      <dc:creator>splunkman</dc:creator>
      <dc:date>2022-08-05T14:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: Punchcard, sort bins with color</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-create-Punchcard-that-sorts-bins-with-color/m-p/608454#M49912</link>
      <description>&lt;P&gt;I haven't used that viz before but it looks like (from the documentation) that you just need to eval another field&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval issues="Issue Priority"
| stats count(issues) as count by date_hour date_wday
| eval range=case(count &amp;lt; 11, "Green", count &amp;lt; 70, "Yellow", count &amp;lt; 150, "Red")&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 05 Aug 2022 13:24:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-create-Punchcard-that-sorts-bins-with-color/m-p/608454#M49912</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-08-05T13:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: Punchcard, sort bins with color</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-create-Punchcard-that-sorts-bins-with-color/m-p/608458#M49913</link>
      <description>&lt;P&gt;Thank you!&lt;BR /&gt;It worked with the Categorical color mode.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Aug 2022 13:40:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-create-Punchcard-that-sorts-bins-with-color/m-p/608458#M49913</guid>
      <dc:creator>splunkman</dc:creator>
      <dc:date>2022-08-05T13:40:24Z</dc:date>
    </item>
  </channel>
</rss>

