<?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 to create highchart zones that change the color of lines in the chart? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-highchart-zones-that-change-the-color-of-lines-in/m-p/432067#M28486</link>
    <description>&lt;P&gt;Hi Team&lt;/P&gt;

&lt;P&gt;I want to create highcharts zones. I need a chart that changes the color line as the example below&lt;BR /&gt;
&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/5103iAD7A4EAC59C9E1A7/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;I found that I need to create a js with this code:&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/5104i4FE8259D0C30D946/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;But I do not know how to pass the series data based on a Search result. In the example, the data is always the same.&lt;/P&gt;

&lt;P&gt;Can someone help me?&lt;BR /&gt;
Thanks in advance&lt;/P&gt;</description>
    <pubDate>Wed, 30 May 2018 18:50:02 GMT</pubDate>
    <dc:creator>maridelfi</dc:creator>
    <dc:date>2018-05-30T18:50:02Z</dc:date>
    <item>
      <title>How to create highchart zones that change the color of lines in the chart?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-highchart-zones-that-change-the-color-of-lines-in/m-p/432067#M28486</link>
      <description>&lt;P&gt;Hi Team&lt;/P&gt;

&lt;P&gt;I want to create highcharts zones. I need a chart that changes the color line as the example below&lt;BR /&gt;
&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/5103iAD7A4EAC59C9E1A7/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;I found that I need to create a js with this code:&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/5104i4FE8259D0C30D946/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;But I do not know how to pass the series data based on a Search result. In the example, the data is always the same.&lt;/P&gt;

&lt;P&gt;Can someone help me?&lt;BR /&gt;
Thanks in advance&lt;/P&gt;</description>
      <pubDate>Wed, 30 May 2018 18:50:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-highchart-zones-that-change-the-color-of-lines-in/m-p/432067#M28486</guid>
      <dc:creator>maridelfi</dc:creator>
      <dc:date>2018-05-30T18:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to create highchart zones that change the color of lines in the chart?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-highchart-zones-that-change-the-color-of-lines-in/m-p/432068#M28487</link>
      <description>&lt;P&gt;@maridelfi, looking at the Coloring ranges by &lt;CODE&gt;zone&lt;/CODE&gt; option in Highcharts as explained in your example, seems like it overlaps the last series into next one. One of the options you have in Splunk is to use &lt;CODE&gt;streamstats&lt;/CODE&gt; command which works with sorted time-series data to get the previous value of a range and use the same in the next range as well.&lt;/P&gt;

&lt;P&gt;Try the following Run anywhere search based on your Sample Data.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| gentimes start=-11 span=1d 
    | fields starttime 
    | eval _time=starttime 
    | fields - starttime 
    | appendcols 
        [| makeresults 
        | eval series="Series 1", count="-10,-5,0,500,1000,1500,10,10,5,0,-5" 
        | makemv count delim="," 
        | mvexpand count 
        | table count] 
    | eval range=case(count&amp;lt;0,"Severe",count&amp;gt;=0 AND count&amp;lt;10,"Moderate",true(),"Low") 
    | table _time range count
    | xyseries _time range count
    | reverse
    | streamstats last(Low) as PrevLow last(Moderate) as PrevModerate last(Severe) as PrevSevere current=f window=1
    | eval Low=case(isnull(Low) AND isnotnull(PrevLow) AND isnotnull(Severe),Severe,isnull(Low) AND isnotnull(PrevLow) AND isnotnull(Moderate),Moderate,true(),Low),Moderate=case(isnull(Moderate) AND isnotnull(PrevModerate) AND isnotnull(Severe),Severe,isnull(Moderate) AND isnotnull(PrevModerate) AND isnotnull(Low),Low,true(),Moderate),Severe=case(isnull(Severe) AND isnotnull(PrevSevere) AND isnotnull(Low),Low,isnull(Severe) AND isnotnull(PrevSevere) AND isnotnull(Moderate),Moderate,true(),Severe)
    |  fields - Prev*
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;PS: &lt;BR /&gt;
1) You would also need to use Chart configuration option color Series based on their ranges: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;option name="charting.fieldColors"&amp;gt;{"Low":"#90ed7d","Moderate":"#7cb5ec","Severe":"#f7a35c"}&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;2)  The commands from &lt;CODE&gt;| gentimes&lt;/CODE&gt; till &lt;CODE&gt;| table count]&lt;/CODE&gt; generate time-series count data as per series in your question. To maintain the sequence I have used time-series data (also to apply streamstats).&lt;/P&gt;

&lt;P&gt;3) &lt;CODE&gt;xyseries&lt;/CODE&gt; command is used to invert the chart axis as per our data presentation requirement.&lt;/P&gt;

&lt;P&gt;4) Default options for handling null values in chart i.e. connect null to &lt;CODE&gt;Zero&lt;/CODE&gt; or &lt;CODE&gt;fillnull&lt;/CODE&gt; command in SPL and connect null &lt;CODE&gt;Gaps&lt;/CODE&gt; or &lt;CODE&gt;filldown&lt;/CODE&gt; command will not suffice the need (hence streamstats has been used as null adjustment is required only to one event)&lt;/P&gt;

&lt;P&gt;5) While you can do this through SPL, if you really want to implement Highcharts with Zone colors, you might have to consider either one of the following time consuming options:&lt;BR /&gt;
a) Build it yourself using &lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/AdvancedDev/CustomVizTutorial"&gt;Custom Visualization API&lt;/A&gt;&lt;BR /&gt;
b) Request an enhancement to existing Highcharts (Column, Line, Area and Bar Chart) if you have Splunk Entitlement.&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/5102i2963A422B5C5A79A/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Following is the Simple XML code for Run anywhere example as shown in the screenshot:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;Highcharts with zone Color&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;title&amp;gt;Chart Without Zones (Overlapping Ranges)&amp;lt;/title&amp;gt;
      &amp;lt;chart&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| gentimes start=-11 span=1d 
| fields starttime 
| eval _time=starttime 
| fields - starttime 
| appendcols 
    [| makeresults 
    | eval series="Series 1", count="-10,-5,0,500,1000,1500,10,10,5,0,-5" 
    | makemv count delim="," 
    | mvexpand count 
    | table count] 
| eval range=case(count&amp;lt;0,"Severe",count&amp;gt;=0 AND count&amp;lt;10,"Moderate",true(),"Low") 
| table _time range count
| xyseries _time range count
| reverse&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.text"&amp;gt;Time Series&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;none&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;line&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;default&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;{"Low":"#90ed7d","Moderate":"#7cb5ec","Severe":"#f7a35c"}&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="refresh.display"&amp;gt;progressbar&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;panel&amp;gt;
      &amp;lt;title&amp;gt;Chart With Zones (Overlapping Ranges) - Using Streamstats&amp;lt;/title&amp;gt;
      &amp;lt;chart&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| gentimes start=-11 span=1d 
| fields starttime 
| eval _time=starttime 
| fields - starttime 
| appendcols 
    [| makeresults 
    | eval series="Series 1", count="-10,-5,0,500,1000,1500,10,10,5,0,-5" 
    | makemv count delim="," 
    | mvexpand count 
    | table count] 
| eval range=case(count&amp;lt;0,"Severe",count&amp;gt;=0 AND count&amp;lt;10,"Moderate",true(),"Low") 
| table _time range count
| xyseries _time range count
| reverse
| streamstats last(Low) as PrevLow last(Moderate) as PrevModerate last(Severe) as PrevSevere current=f window=1
| eval Low=case(isnull(Low) AND isnotnull(PrevLow) AND isnotnull(Severe),Severe,isnull(Low) AND isnotnull(PrevLow) AND isnotnull(Moderate),Moderate,true(),Low),Moderate=case(isnull(Moderate) AND isnotnull(PrevModerate) AND isnotnull(Severe),Severe,isnull(Moderate) AND isnotnull(PrevModerate) AND isnotnull(Low),Low,true(),Moderate),Severe=case(isnull(Severe) AND isnotnull(PrevSevere) AND isnotnull(Low),Low,isnull(Severe) AND isnotnull(PrevSevere) AND isnotnull(Moderate),Moderate,true(),Severe)
|  fields - Prev*&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.text"&amp;gt;Time Series&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;none&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;line&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;default&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;{"Low":"#90ed7d","Moderate":"#7cb5ec","Severe":"#f7a35c"}&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="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;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Please try out and confirm!&lt;/P&gt;

&lt;P&gt;PS: If you have used any supporting js library beside &lt;CODE&gt;highchart.js&lt;/CODE&gt; like &lt;CODE&gt;highchart-more.js&lt;/CODE&gt;, &lt;CODE&gt;Custom Visualization API might not get built&lt;/CODE&gt;. Refer to my previous unanswered question on issue I faced with Highcharts supporting JS files (other than basic charts): &lt;A href="https://answers.splunk.com/answers/562115/custom-visualization-api-issues-with-chart-types-o.html"&gt;https://answers.splunk.com/answers/562115/custom-visualization-api-issues-with-chart-types-o.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 May 2018 20:48:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-highchart-zones-that-change-the-color-of-lines-in/m-p/432068#M28487</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-05-30T20:48:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to create highchart zones that change the color of lines in the chart?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-highchart-zones-that-change-the-color-of-lines-in/m-p/432069#M28488</link>
      <description>&lt;P&gt;wow, you are a genius! works perfectly &lt;BR /&gt;
Thaks so much for your help and your time &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 May 2018 21:15:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-highchart-zones-that-change-the-color-of-lines-in/m-p/432069#M28488</guid>
      <dc:creator>maridelfi</dc:creator>
      <dc:date>2018-05-30T21:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to create highchart zones that change the color of lines in the chart?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-highchart-zones-that-change-the-color-of-lines-in/m-p/432070#M28489</link>
      <description>&lt;P&gt;@maridelfi, Thanks. I am glad this worked for you (specially without having to code your own Custom Visualization &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; ). Do accept the answer and up-vote to mark this question as answered and help others with similar use case in future!&lt;/P&gt;</description>
      <pubDate>Wed, 30 May 2018 21:44:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-highchart-zones-that-change-the-color-of-lines-in/m-p/432070#M28489</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-05-30T21:44:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to create highchart zones that change the color of lines in the chart?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-highchart-zones-that-change-the-color-of-lines-in/m-p/432071#M28490</link>
      <description>&lt;P&gt;Hi @maridelfi&lt;/P&gt;

&lt;P&gt;Glad you found an awesome answer through @niketnilay &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Please don't forget to resolve your question by clicking "Accept" directly below his answer. This will make it easier for other users with a similar requirement to find the answer. &lt;/P&gt;

&lt;P&gt;Thanks!&lt;/P&gt;

&lt;P&gt;Patrick&lt;/P&gt;</description>
      <pubDate>Thu, 31 May 2018 16:55:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-highchart-zones-that-change-the-color-of-lines-in/m-p/432071#M28490</guid>
      <dc:creator>ppablo</dc:creator>
      <dc:date>2018-05-31T16:55:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to create highchart zones that change the color of lines in the chart?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-highchart-zones-that-change-the-color-of-lines-in/m-p/551267#M38108</link>
      <description>&lt;P&gt;Been digging into just about every post you have regarding to highcharts the last few days.&amp;nbsp; they've all be very helpful, thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 11 May 2021 17:25:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-highchart-zones-that-change-the-color-of-lines-in/m-p/551267#M38108</guid>
      <dc:creator>sjbriggs</dc:creator>
      <dc:date>2021-05-11T17:25:34Z</dc:date>
    </item>
  </channel>
</rss>

