<?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: SVG Trend Indicator in Quick Measures Gallery</title>
    <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/622892#M301</link>
    <description>&lt;P&gt;Just tried that and the SVG is sound. I have deployed this with different SVGs in 3 different projects and they all simultanously broke with the Feb update of PBI so there must be a change in PBI somewhere. I thought it might be due to "external" images so I took the URL of an SVG that I found online and put it into a table and set it to Web Image but that worked fine.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Will keep you posted with what Microsoft say. They've asked for the PBIX file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the help,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tom&lt;/P&gt;</description>
    <pubDate>Wed, 13 Feb 2019 19:16:51 GMT</pubDate>
    <dc:creator>tomknight</dc:creator>
    <dc:date>2019-02-13T19:16:51Z</dc:date>
    <item>
      <title>SVG Trend Indicator</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/488382#M187</link>
      <description>&lt;P&gt;Just like SVG SparkLines this DAX produces a Trend indicator, Up/Down/Neutral.&lt;/P&gt;
&lt;P&gt;Add it as a field in your table, keyed off a numeric value to give you the up/down/neutral.&lt;/P&gt;
&lt;P&gt;One additional trick is to set the image size as small as possible (24) under Grid as part of the formatting.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Trend_Image =&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;VAR MessageText = ""&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; VAR Radius = 9&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; VAR Colour = "blue"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; VAR Opacity = 0.75&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; VAR SVG_Neutral = "data&amp;amp;colon;image/svg+xml;utf8," &amp;amp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "&amp;lt;svg xmlns='&lt;A href="http://www.w3.org/2000/svg" target="_blank"&gt;http://www.w3.org/2000/svg&lt;/A&gt;' x='0px' y='0px' width='50' height='20'&amp;gt;" &amp;amp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "&amp;lt;circle cx='25' cy='10' r='" &amp;amp; Radius &amp;amp; "' fill='" &amp;amp; Colour &amp;amp; "' fill-opacity='" &amp;amp; Opacity &amp;amp; "' /&amp;gt;" &amp;amp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "&amp;lt;/svg&amp;gt;"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; VAR SVG_UP = "data&amp;amp;colon;image/svg+xml;utf8," &amp;amp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "&amp;lt;svg xmlns='&lt;A href="http://www.w3.org/2000/svg" target="_blank"&gt;http://www.w3.org/2000/svg&lt;/A&gt;' x='0px' y='0px' width='50' height='20'&amp;gt;" &amp;amp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "&amp;lt;polygon points=""05,20 45,20 25,1"" style=""fill:green;stroke:green;stroke-width:0;fill-rule:evenodd;"" /&amp;gt;" &amp;amp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "&amp;lt;/svg&amp;gt;"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; VAR SVG_DN = "data&amp;amp;colon;image/svg+xml;utf8," &amp;amp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "&amp;lt;svg xmlns='&lt;A href="http://www.w3.org/2000/svg" target="_blank"&gt;http://www.w3.org/2000/svg&lt;/A&gt;' x='0px' y='0px' width='50' height='20'&amp;gt;" &amp;amp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "&amp;lt;polygon points=""05,1 45,1 25,20"" style=""fill:red;stroke:red;stroke-width:0;fill-rule:evenodd;"" /&amp;gt;" &amp;amp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "&amp;lt;/svg&amp;gt;"&lt;/P&gt;
&lt;P&gt;RETURN&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF('Customer KPI'[KPI_Trend] &amp;gt; 0, SVG_UP, IF('Customer KPI'[KPI_Trend] &amp;lt; 0, SVG_DN, SVG_Neutral))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Aug 2018 19:07:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/488382#M187</guid>
      <dc:creator>dgwilson</dc:creator>
      <dc:date>2018-08-13T19:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Trend Indicator</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/489069#M188</link>
      <description>&lt;P&gt;Thanks a lot for posting this - it's fantastic!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The DAX didn't work out of the box&amp;nbsp;for me (I got the broken image icon)&amp;nbsp;but I followed the link in your other DAX based sparkline post and saw that the prefix for the SVG data was slightly different. I think the forum is changing the code when you save it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you replace the "&amp;amp;colon;" in the code with an actual colon it works perfectly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks again,&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Tom&lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2018 09:34:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/489069#M188</guid>
      <dc:creator>tomknight</dc:creator>
      <dc:date>2018-08-14T09:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Trend Indicator</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/490648#M196</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes an issue with copy &amp;amp; paste. and Having tried it again, the editor here is doing "fancy" stuff that I cannot work around.&lt;/P&gt;
&lt;P&gt;The "magic" is attached in an image below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Aug 2018 20:08:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/490648#M196</guid>
      <dc:creator>dgwilson</dc:creator>
      <dc:date>2018-08-15T20:08:33Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Trend Indicator</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/573772#M252</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does this work for you in a total row?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It doesn't seem to work for me and I don't know why. It should calculate exactly the same shouldn't it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Tom&lt;/P&gt;</description>
      <pubDate>Tue, 27 Nov 2018 16:22:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/573772#M252</guid>
      <dc:creator>tomknight</dc:creator>
      <dc:date>2018-11-27T16:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Trend Indicator</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/573830#M253</link>
      <description>&lt;P&gt;That's a good question. I haven't used it in a total row.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Nov 2018 18:02:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/573830#M253</guid>
      <dc:creator>dgwilson</dc:creator>
      <dc:date>2018-11-27T18:02:40Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Trend Indicator</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/622399#M296</link>
      <description>&lt;P&gt;This&amp;nbsp;doesn't seem to work&amp;nbsp;in the latest update of PowerBI service - I get a missing image placeholder instead of the SVG. Any idea why that might be? It still works fine in PBI Desktop but not in the service.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Tom&lt;/P&gt;</description>
      <pubDate>Wed, 13 Feb 2019 08:53:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/622399#M296</guid>
      <dc:creator>tomknight</dc:creator>
      <dc:date>2019-02-13T08:53:03Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Trend Indicator</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/622841#M298</link>
      <description>&lt;P&gt;Likely a browser issue. Or browser version issue.&lt;/P&gt;
&lt;P&gt;Does it work in Chrome?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- David&lt;/P&gt;</description>
      <pubDate>Wed, 13 Feb 2019 17:57:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/622841#M298</guid>
      <dc:creator>dgwilson</dc:creator>
      <dc:date>2019-02-13T17:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Trend Indicator</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/622848#M299</link>
      <description>Strangely it doesn’t work in Chrome or Firefox but it does work in Edge - never seen in issue like this that way round, its usually vice versa. I’ve raised a ticket with Microsoft so will see what they say.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Tom</description>
      <pubDate>Wed, 13 Feb 2019 18:16:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/622848#M299</guid>
      <dc:creator>tomknight</dc:creator>
      <dc:date>2019-02-13T18:16:54Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Trend Indicator</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/622875#M300</link>
      <description>&lt;P&gt;That's really weird. "Everything" works in Chrome.&lt;/P&gt;
&lt;P&gt;The SVG code that you have (or are generating)... you can place in a txt file xyz.svg and open that in the browser... so you can test outside of Power BI. There maybe something in the SVG code or headers that is breaking the browser compatability?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- David&lt;/P&gt;</description>
      <pubDate>Wed, 13 Feb 2019 18:47:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/622875#M300</guid>
      <dc:creator>dgwilson</dc:creator>
      <dc:date>2019-02-13T18:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Trend Indicator</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/622892#M301</link>
      <description>&lt;P&gt;Just tried that and the SVG is sound. I have deployed this with different SVGs in 3 different projects and they all simultanously broke with the Feb update of PBI so there must be a change in PBI somewhere. I thought it might be due to "external" images so I took the URL of an SVG that I found online and put it into a table and set it to Web Image but that worked fine.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Will keep you posted with what Microsoft say. They've asked for the PBIX file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the help,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tom&lt;/P&gt;</description>
      <pubDate>Wed, 13 Feb 2019 19:16:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/622892#M301</guid>
      <dc:creator>tomknight</dc:creator>
      <dc:date>2019-02-13T19:16:51Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Trend Indicator</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/629307#M312</link>
      <description>&lt;P&gt;Getting the same issue&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 03:01:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/629307#M312</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-02-22T03:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Trend Indicator</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/629779#M313</link>
      <description>&lt;P&gt;Microsoft have acknowledged it is a bug and i'm awaiting details of a fix. For now I had to bake the SVGs I wanted into files and host them then use a web URL as usual.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I did notice that the images are still honoured if you export to PDF and it works in Edge just not other browsers.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 13:15:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/629779#M313</guid>
      <dc:creator>tomknight</dc:creator>
      <dc:date>2019-02-22T13:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Trend Indicator</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/633776#M316</link>
      <description>&lt;P&gt;Very interesting....I have the same issue.&amp;nbsp; For me, it is broken in Chrome, Edge, and Firefox however it works in Opera!&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any news from Microsoft?&amp;nbsp; I opened a support ticket a week ago and have heard nothing back from them.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 05:43:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/633776#M316</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-02-28T05:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Trend Indicator</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/633977#M317</link>
      <description>&lt;P&gt;My ticket is still open and they are still discussing a solution as far as I know. I last heard from them a couple of days ago.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 08:45:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/633977#M317</guid>
      <dc:creator>tomknight</dc:creator>
      <dc:date>2019-02-28T08:45:12Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Trend Indicator</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/640467#M322</link>
      <description>&lt;P&gt;Microsoft have fixed this and should be released first week of April.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Mar 2019 13:01:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/640467#M322</guid>
      <dc:creator>tomknight</dc:creator>
      <dc:date>2019-03-08T13:01:18Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Trend Indicator</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/655917#M326</link>
      <description>&lt;P&gt;OK - good to hear.&amp;nbsp; Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2019 01:37:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/655917#M326</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-03-28T01:37:29Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Trend Indicator</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/666909#M334</link>
      <description>&lt;P&gt;Any update?&amp;nbsp; Doesn't appear to be fixed yet?&lt;/P&gt;</description>
      <pubDate>Wed, 10 Apr 2019 23:33:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/666909#M334</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-10T23:33:25Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Trend Indicator</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/667148#M335</link>
      <description>&lt;P&gt;OK, SVG's are now rendering in tables, but not any of the image custom visuals... Which is not ideal as I cannot switch the column headings off for tables...&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2019 06:28:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Trend-Indicator/m-p/667148#M335</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-11T06:28:39Z</dc:date>
    </item>
  </channel>
</rss>

