<?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: Arcade Line Chart Pop-up with multiple series in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/arcade-line-chart-pop-up-with-multiple-series/m-p/1595882#M64032</link>
    <description>&lt;P&gt;Hello, did you solve this issue?&lt;/P&gt;</description>
    <pubDate>Sun, 16 Mar 2025 16:21:51 GMT</pubDate>
    <dc:creator>DeepakSatheesan2025</dc:creator>
    <dc:date>2025-03-16T16:21:51Z</dc:date>
    <item>
      <title>Arcade Line Chart Pop-up with multiple series</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-line-chart-pop-up-with-multiple-series/m-p/1567336#M62802</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;Is it possible to create a multi-series line chart in AGOL Pop-ups using Arcade? I have &lt;STRONG&gt;2&lt;/STRONG&gt; home value &lt;STRONG&gt;Fields&lt;/STRONG&gt; for each &lt;STRONG&gt;Year&lt;/STRONG&gt; (2000-2024). One field is the actual price (Actual_2000) and the other is inflation-adjusted (Inflated_2000).&lt;/P&gt;&lt;P&gt;Right now, I am building an arcade expression to make a custom line chart but am wondering if it is possible to create two lines, one series representing the Actual price and the other, Inflated.&lt;/P&gt;&lt;P&gt;Let me know if you have any suggestions. Thank you!&lt;/P&gt;&lt;P&gt;Below is my current arcade expression:&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;&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;LI-CODE lang="markup"&gt;return {
    type: 'media',
    title : 'Home Value',
    attributes : {yr2000 : Round($feature.ACTUAL_DATE_9_30_2000,0), yr2001 : Round($feature.ACTUAL_DATE_9_30_2001,0), yr2003 : Round($feature.ACTUAL_DATE_9_30_2002,0)},  // replace this dictionary with your own key-value pairs
    mediaInfos: [{
        type : 'linechart', //linechart | barchart | piechart | columnchart
        title : 'The title for the chart in the element',
        // caption : 'Optional caption',
        altText : '', // altText will be read by screen readers
        value : {
          fields: ["yr2000", "yr2001", "yr2003"],  // choose what attributes to use in the chart
          //normalizeField : '',  // the name of the attribute to normalize by or value 
        }
}]
  }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2024 17:12:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-line-chart-pop-up-with-multiple-series/m-p/1567336#M62802</guid>
      <dc:creator>C_McNamara</dc:creator>
      <dc:date>2024-12-11T17:12:26Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Line Chart Pop-up with multiple series</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-line-chart-pop-up-with-multiple-series/m-p/1595882#M64032</link>
      <description>&lt;P&gt;Hello, did you solve this issue?&lt;/P&gt;</description>
      <pubDate>Sun, 16 Mar 2025 16:21:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-line-chart-pop-up-with-multiple-series/m-p/1595882#M64032</guid>
      <dc:creator>DeepakSatheesan2025</dc:creator>
      <dc:date>2025-03-16T16:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Line Chart Pop-up with multiple series</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-line-chart-pop-up-with-multiple-series/m-p/1603264#M64325</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I ended up republishing a zip code layer with a standalone table along with it. The table had 20,000 records associated with 80+ zip code polygons with a category field (Actual v. Inflated) and used that to group my features. This allowed me to create two lines in a series (see image).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="C_McNamara_0-1744033873566.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/129587i034A56D1312FC191/image-size/medium?v=v2&amp;amp;px=400" role="button" title="C_McNamara_0-1744033873566.png" alt="C_McNamara_0-1744033873566.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Apr 2025 13:52:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-line-chart-pop-up-with-multiple-series/m-p/1603264#M64325</guid>
      <dc:creator>C_McNamara</dc:creator>
      <dc:date>2025-04-07T13:52:53Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Line Chart Pop-up with multiple series</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-line-chart-pop-up-with-multiple-series/m-p/1652788#M66419</link>
      <description>&lt;P&gt;How did grouping the data allow you to place 2 series on the same chart?&lt;/P&gt;&lt;P&gt;Can you show the updated Arcade code where you managed to do that?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Sep 2025 13:22:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-line-chart-pop-up-with-multiple-series/m-p/1652788#M66419</guid>
      <dc:creator>Nicolas_</dc:creator>
      <dc:date>2025-09-24T13:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Line Chart Pop-up with multiple series</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-line-chart-pop-up-with-multiple-series/m-p/1674317#M67436</link>
      <description>&lt;P&gt;sorry just saw this.&lt;/P&gt;&lt;P&gt;I am actually not using arcade. I added a category field to show two series - Actual &amp;amp; Inflation Adjusted.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="C_McNamara_0-1766167218168.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/145928i6C79E96842D53967/image-size/medium?v=v2&amp;amp;px=400" role="button" title="C_McNamara_0-1766167218168.png" alt="C_McNamara_0-1766167218168.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Dec 2025 18:00:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-line-chart-pop-up-with-multiple-series/m-p/1674317#M67436</guid>
      <dc:creator>C_McNamara</dc:creator>
      <dc:date>2025-12-19T18:00:25Z</dc:date>
    </item>
  </channel>
</rss>

