<?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: Bar Chart Color change for dynamically changing string values of one field in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Bar-Chart-Color-change-for-dynamically-changing-string-values-of/m-p/516793#M34603</link>
    <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/209974"&gt;@ak9092&lt;/a&gt;&amp;nbsp;This question has definitely been answered multiple times before. But even I am having difficulty searching for my own answer. So let me documented one more time.&lt;/P&gt;&lt;P&gt;The reason why you get only one series color for &lt;STRONG&gt;| stats count by status&lt;/STRONG&gt; is that you have only one series i.e. &lt;STRONG&gt;count&lt;/STRONG&gt; (also displayed in the Legend).&lt;BR /&gt;When you use transpose you get series colors as all status values become column and hence show up in Legend. However, you loose values on x-axis because of which you can not show series names on x-axis but as Legend due to this approach.&lt;BR /&gt;&lt;BR /&gt;What you need to use is following kind of eval&amp;nbsp; &lt;STRONG&gt;| eval {field1}=value&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;yourMainSearch&amp;gt;
| stats count by status
| eval {status}=count
| fields - count&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The above will create Column names as Status as well as Row Name as Status and for each column row combination populate corresponding count.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Screen Shot 2020-08-29 at 12.26.44 AM.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/10560iC56B3FF3260AB75B/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2020-08-29 at 12.26.44 AM.png" alt="Screen Shot 2020-08-29 at 12.26.44 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The Column/Bar chart however, will not stick together as this kind of creates matrix form of data. So you would need to enable Stacked mode for the chart.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Screen Shot 2020-08-29 at 12.26.28 AM.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/10559i75CE6729EBF53A1F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2020-08-29 at 12.26.28 AM.png" alt="Screen Shot 2020-08-29 at 12.26.28 AM.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Following is the Simple XML Code for Run Anywhere example which generates Status and corresponding count similar to the question (replace with your existing search). Please try out and confirm!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;Field Color for Count by Status&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;chart&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| makeresults
| fields - _time
| eval status="COMPLETE,PENDING,REPAIR,CANCELED,POSTED"
| makemv status delim=","
| mvexpand status
| eval count=random()
| table status count
| eval {status}=count
| fields - count&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="charting.axisLabelsX.majorLabelStyle.overflowMode"&amp;gt;ellipsisNone&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisLabelsX.majorLabelStyle.rotation"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisTitleX.visibility"&amp;gt;visible&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisTitleY.visibility"&amp;gt;visible&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisTitleY2.visibility"&amp;gt;visible&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisX.abbreviation"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisX.scale"&amp;gt;linear&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisY.abbreviation"&amp;gt;auto&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisY.scale"&amp;gt;linear&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisY2.abbreviation"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisY2.enabled"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisY2.scale"&amp;gt;inherit&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart"&amp;gt;column&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.bubbleMaximumSize"&amp;gt;50&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.bubbleMinimumSize"&amp;gt;10&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.bubbleSizeBy"&amp;gt;area&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.nullValueMode"&amp;gt;gaps&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.showDataLabels"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.sliceCollapsingThreshold"&amp;gt;0.01&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.stackMode"&amp;gt;stacked&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.style"&amp;gt;shiny&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.fieldColors"&amp;gt;{"COMPLETE":#32a838,"CANCELED":#e81324,"REPAIR":#FFC200,"PENDING":#F1813F,"POSTED":#006D9C }&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.layout.splitSeries"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.layout.splitSeries.allowIndependentYRanges"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.legend.labelStyle.overflowMode"&amp;gt;ellipsisMiddle&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.legend.mode"&amp;gt;standard&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.legend.placement"&amp;gt;right&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.lineWidth"&amp;gt;2&amp;lt;/option&amp;gt;
        &amp;lt;option name="height"&amp;gt;327&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.enabled"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.scales.shared"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.size"&amp;gt;medium&amp;lt;/option&amp;gt;
      &amp;lt;/chart&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 28 Aug 2020 19:09:31 GMT</pubDate>
    <dc:creator>niketn</dc:creator>
    <dc:date>2020-08-28T19:09:31Z</dc:date>
    <item>
      <title>Bar Chart Color change for dynamically changing string values of one field</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Bar-Chart-Color-change-for-dynamically-changing-string-values-of/m-p/516652#M34578</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have very basic query which is giving me the desired results and visualization but even after lot of researching what I am not able to do is color the bars according to the field values.&lt;/P&gt;&lt;P&gt;Below is something what my query looks like -&lt;/P&gt;&lt;P&gt;my search ...| chart count by status&lt;/P&gt;&lt;P&gt;now this status fields has around 15-20 status values like complete,pending, repair, canceled, posted,etc, etc..&lt;/P&gt;&lt;P&gt;so as of now my Bar chart has Status field on X-axis with the field values name mapped to it like complete, cancelled,etc and my Y -axis has the count of those statuses.&lt;/P&gt;&lt;P&gt;Now what i want is to keep the visualization as it is and change colors of few statuses like green for Complete, red for canceled, amber for repair and so on.&lt;/P&gt;&lt;P&gt;I tried&lt;/P&gt;&lt;P&gt;charting.fieldColors"&amp;gt;{"COMPLETE":#32a838,"CANCELED":#e81324,"REPAIR":#FFC200}&lt;/P&gt;&lt;P&gt;but is not helping.&lt;/P&gt;&lt;P&gt;I also tried to transposing rows to column with which i am able to change the colors but then the mapping of field values onto to the Y-axis is&amp;nbsp; being removed and converted to legends, which is not looking good.&lt;/P&gt;&lt;P&gt;Can this be achieved by keeping my current visualization intact ?&lt;/P&gt;&lt;P&gt;I have gone through multiple pages here on Splunk Answers but no luck.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Aug 2020 08:08:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Bar-Chart-Color-change-for-dynamically-changing-string-values-of/m-p/516652#M34578</guid>
      <dc:creator>ak9092</dc:creator>
      <dc:date>2020-08-28T08:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: Bar Chart Color change for dynamically changing string values of one field</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Bar-Chart-Color-change-for-dynamically-changing-string-values-of/m-p/516672#M34581</link>
      <description>&lt;P&gt;Values should match in results and charting.fieldColors.&lt;/P&gt;&lt;P&gt;below is the example:&lt;/P&gt;&lt;P&gt;{"foo\: bar": 0xffff00, foo: 0xff0000, "foobar": 0x000000}&lt;/P&gt;&lt;P&gt;Escape the following special characters in a key or string value with double quotes:&lt;/P&gt;&lt;P&gt;[]{}(),:" example in your case:&amp;nbsp;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;option name="charting.fieldColors"&amp;gt;{"Complete":0x9BE8AB,"Cancelled":0xFF0000}&amp;lt;/option&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;you can change color codes.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Aug 2020 11:26:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Bar-Chart-Color-change-for-dynamically-changing-string-values-of/m-p/516672#M34581</guid>
      <dc:creator>thambisetty</dc:creator>
      <dc:date>2020-08-28T11:26:03Z</dc:date>
    </item>
    <item>
      <title>Re: Bar Chart Color change for dynamically changing string values of one field</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Bar-Chart-Color-change-for-dynamically-changing-string-values-of/m-p/516793#M34603</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/209974"&gt;@ak9092&lt;/a&gt;&amp;nbsp;This question has definitely been answered multiple times before. But even I am having difficulty searching for my own answer. So let me documented one more time.&lt;/P&gt;&lt;P&gt;The reason why you get only one series color for &lt;STRONG&gt;| stats count by status&lt;/STRONG&gt; is that you have only one series i.e. &lt;STRONG&gt;count&lt;/STRONG&gt; (also displayed in the Legend).&lt;BR /&gt;When you use transpose you get series colors as all status values become column and hence show up in Legend. However, you loose values on x-axis because of which you can not show series names on x-axis but as Legend due to this approach.&lt;BR /&gt;&lt;BR /&gt;What you need to use is following kind of eval&amp;nbsp; &lt;STRONG&gt;| eval {field1}=value&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;yourMainSearch&amp;gt;
| stats count by status
| eval {status}=count
| fields - count&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The above will create Column names as Status as well as Row Name as Status and for each column row combination populate corresponding count.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Screen Shot 2020-08-29 at 12.26.44 AM.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/10560iC56B3FF3260AB75B/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2020-08-29 at 12.26.44 AM.png" alt="Screen Shot 2020-08-29 at 12.26.44 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The Column/Bar chart however, will not stick together as this kind of creates matrix form of data. So you would need to enable Stacked mode for the chart.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Screen Shot 2020-08-29 at 12.26.28 AM.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/10559i75CE6729EBF53A1F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2020-08-29 at 12.26.28 AM.png" alt="Screen Shot 2020-08-29 at 12.26.28 AM.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Following is the Simple XML Code for Run Anywhere example which generates Status and corresponding count similar to the question (replace with your existing search). Please try out and confirm!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;Field Color for Count by Status&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;chart&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| makeresults
| fields - _time
| eval status="COMPLETE,PENDING,REPAIR,CANCELED,POSTED"
| makemv status delim=","
| mvexpand status
| eval count=random()
| table status count
| eval {status}=count
| fields - count&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="charting.axisLabelsX.majorLabelStyle.overflowMode"&amp;gt;ellipsisNone&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisLabelsX.majorLabelStyle.rotation"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisTitleX.visibility"&amp;gt;visible&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisTitleY.visibility"&amp;gt;visible&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisTitleY2.visibility"&amp;gt;visible&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisX.abbreviation"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisX.scale"&amp;gt;linear&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisY.abbreviation"&amp;gt;auto&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisY.scale"&amp;gt;linear&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisY2.abbreviation"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisY2.enabled"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisY2.scale"&amp;gt;inherit&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart"&amp;gt;column&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.bubbleMaximumSize"&amp;gt;50&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.bubbleMinimumSize"&amp;gt;10&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.bubbleSizeBy"&amp;gt;area&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.nullValueMode"&amp;gt;gaps&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.showDataLabels"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.sliceCollapsingThreshold"&amp;gt;0.01&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.stackMode"&amp;gt;stacked&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.style"&amp;gt;shiny&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.fieldColors"&amp;gt;{"COMPLETE":#32a838,"CANCELED":#e81324,"REPAIR":#FFC200,"PENDING":#F1813F,"POSTED":#006D9C }&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.layout.splitSeries"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.layout.splitSeries.allowIndependentYRanges"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.legend.labelStyle.overflowMode"&amp;gt;ellipsisMiddle&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.legend.mode"&amp;gt;standard&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.legend.placement"&amp;gt;right&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.lineWidth"&amp;gt;2&amp;lt;/option&amp;gt;
        &amp;lt;option name="height"&amp;gt;327&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.enabled"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.scales.shared"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.size"&amp;gt;medium&amp;lt;/option&amp;gt;
      &amp;lt;/chart&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Aug 2020 19:09:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Bar-Chart-Color-change-for-dynamically-changing-string-values-of/m-p/516793#M34603</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2020-08-28T19:09:31Z</dc:date>
    </item>
    <item>
      <title>Re: Bar Chart Color change for dynamically changing string values of one field</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Bar-Chart-Color-change-for-dynamically-changing-string-values-of/m-p/516898#M34613</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/201110"&gt;@niketn&lt;/a&gt;&amp;nbsp;Thanks a lot for documenting it once again, this was something i was looking for .&lt;/P&gt;&lt;P&gt;Just one more question though - how do i sort the statuses by count ?&lt;/P&gt;</description>
      <pubDate>Sun, 30 Aug 2020 09:49:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Bar-Chart-Color-change-for-dynamically-changing-string-values-of/m-p/516898#M34613</guid>
      <dc:creator>ak9092</dc:creator>
      <dc:date>2020-08-30T09:49:51Z</dc:date>
    </item>
    <item>
      <title>Re: Bar Chart Color change for dynamically changing string values of one field</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Bar-Chart-Color-change-for-dynamically-changing-string-values-of/m-p/516920#M34615</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/209974"&gt;@ak9092&lt;/a&gt;&amp;nbsp;I am glad you found this helpful. For sorting just add the sort command&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| sort - count&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Screen Shot 2020-08-30 at 10.21.14 PM.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/10566iDE4322727A7C7A93/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2020-08-30 at 10.21.14 PM.png" alt="Screen Shot 2020-08-30 at 10.21.14 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Do upvote the answer/comments that helped.&lt;/P&gt;</description>
      <pubDate>Sun, 30 Aug 2020 16:53:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Bar-Chart-Color-change-for-dynamically-changing-string-values-of/m-p/516920#M34615</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2020-08-30T16:53:03Z</dc:date>
    </item>
    <item>
      <title>Re: Bar Chart Color change for dynamically changing string values of one field</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Bar-Chart-Color-change-for-dynamically-changing-string-values-of/m-p/516974#M34625</link>
      <description>&lt;P&gt;oops ..my bad &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/201110"&gt;@niketn&lt;/a&gt;&amp;nbsp;. Actually i did use sort before, but was viewing data in stats table itself and since the values was separated didn't paid much attention that it had already sorted &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; ..anyways thanks again for your help&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Aug 2020 08:46:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Bar-Chart-Color-change-for-dynamically-changing-string-values-of/m-p/516974#M34625</guid>
      <dc:creator>ak9092</dc:creator>
      <dc:date>2020-08-31T08:46:38Z</dc:date>
    </item>
  </channel>
</rss>

