<?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 Animation - Bouncing/Blinking Stephen Few 'Red Dot' in Quick Measures Gallery</title>
    <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/525390#M229</link>
    <description>&lt;P&gt;Hi Greg, I tried this solution&amp;nbsp;and I can get the circle in the middle with some tweaking but the line is still a concern. I cannot get it to extend and fill the column of the Matrix - Is there a way I can achieve this or I can get it done through other ways?&lt;/P&gt;
&lt;P&gt;Below is how it looks like now.&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;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also this code dint work for me, the image was not displayed. &amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;VAR __header = "&lt;U&gt;&lt;STRONG&gt;data&amp;amp;colon;&lt;/STRONG&gt;&lt;/U&gt;image/svg+xml;utf8,"&lt;/P&gt;
&lt;P&gt;I had to change it to&amp;nbsp;VAR __header = "data&amp;amp;colon;image/svg+xml;utf8,"&lt;/P&gt;</description>
    <pubDate>Tue, 25 Sep 2018 15:28:05 GMT</pubDate>
    <dc:creator>betsyvimal</dc:creator>
    <dc:date>2018-09-25T15:28:05Z</dc:date>
    <item>
      <title>SVG Animation - Bouncing/Blinking Stephen Few 'Red Dot'</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/517631#M221</link>
      <description>&lt;P&gt;OK, this was not rendering for me in Edge when I "Published to Web" but it does work in Desktop so you may have to download the PBIX to see it. Essentially steals from&amp;nbsp;Anonymous&lt;/LI-USER&gt;'s Quick Measure but uses SVG to animate the red dot. Fun.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And yes, I realize that the &amp;lt;blink&amp;gt; tag was the most despised tag ever in the history of HTML...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Bounce&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Bounce = 
VAR __color = "Red"
VAR __lineColor = "Black"
VAR __lineThickness = 1
VAR __radius = 9
VAR __opacity = 1
VAR __rand = RAND()
VAR __header = "data&amp;amp;colon;image/svg+xml;utf8," &amp;amp;
              "&amp;lt;svg 
                xmlns:dc='http://purl.org/dc/elements/1.1/'
                xmlns:cc='http://creativecommons.org/ns#'
                xmlns:svg='http://www.w3.org/2000/svg'
                xmlns='http://www.w3.org/2000/svg'
                width='100%' height='100%'&amp;gt;"
VAR __footer = "&amp;lt;/svg&amp;gt;"
VAR __shapeTextCircle = "&amp;lt;circle cx='10' cy='30' r='" &amp;amp; __radius &amp;amp; "' fill='" &amp;amp; __color &amp;amp; "' fill-opacity='" &amp;amp; __opacity &amp;amp; "' stroke='" &amp;amp; __lineColor &amp;amp; "' stroke-width='" &amp;amp; __lineThickness &amp;amp; "'&amp;gt; " &amp;amp; "&amp;lt;animate attributeName='cy' from='30' to='9' dur='.5s' begin='0s' repeatCount='indefinite'/&amp;gt;&amp;lt;/circle&amp;gt;"
RETURN IF([Flag],__header &amp;amp; __shapeTextCircle &amp;amp; __footer,"")
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Blink&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Blink = 
VAR __color = "Red"
VAR __lineColor = "Black"
VAR __lineThickness = 1
VAR __radius = 9
VAR __opacity = 1
VAR __rand = RAND()
VAR __header = "data&amp;amp;colon;image/svg+xml;utf8," &amp;amp;
              "&amp;lt;svg 
                xmlns:dc='http://purl.org/dc/elements/1.1/'
                xmlns:cc='http://creativecommons.org/ns#'
                xmlns:svg='http://www.w3.org/2000/svg'
                xmlns='http://www.w3.org/2000/svg'
                width='100%' height='100%'&amp;gt;"
VAR __footer = "&amp;lt;/svg&amp;gt;"
VAR __shapeTextCircle = "&amp;lt;circle cx='10' cy='20' r='" &amp;amp; __radius &amp;amp; "' fill='" &amp;amp; __color &amp;amp; "' fill-opacity='" &amp;amp; __opacity &amp;amp; "' stroke='" &amp;amp; __lineColor &amp;amp; "' stroke-width='" &amp;amp; __lineThickness &amp;amp; "'&amp;gt; " &amp;amp; "&amp;lt;animate attributeName='opacity' from='1' to='0' dur='1s' begin='0s' repeatCount='indefinite'/&amp;gt;&amp;lt;/circle&amp;gt;"
RETURN IF([Flag],__header &amp;amp; __shapeTextCircle &amp;amp; __footer,"")
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;EDIT: Because I feel that with the power of SVG that all Power BI reports must henceforth be gaudy and ridiculous, I have added Spinner, Square, Swipe and Twirl effects.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Spinner&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Spinner = 
VAR __color = "Red"
VAR __lineColor = "Black"
VAR __lineThickness = 1
VAR __radius = 9
VAR __opacity = 1
VAR __rand = RAND()
VAR __header = "data&amp;amp;colon;image/svg+xml;utf8," &amp;amp;
              "&amp;lt;svg 
                xmlns:dc='http://purl.org/dc/elements/1.1/'
                xmlns:cc='http://creativecommons.org/ns#'
                xmlns:svg='http://www.w3.org/2000/svg'
                xmlns='http://www.w3.org/2000/svg'
                width='100' height='100'&amp;gt;"
VAR __footer = "&amp;lt;/svg&amp;gt;"
VAR __shapeText = "  &amp;lt;rect stroke='Black' width='50' height='50' x='25' y='25' fill='Red'&amp;gt;
  
  &amp;lt;animateTransform 
           attributeName='transform' 
           attributeType='XML'
           type='rotate'
           from='0 50 50'
           to='360 50 50' 
           dur='2s'
           begin='0s'
           repeatCount='indefinite'
           /&amp;gt;&amp;lt;/rect&amp;gt;"
RETURN IF([Flag],__header &amp;amp; __shapeText &amp;amp; __footer,"")
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Square&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;What? It moves in a square, sheesh...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Square = 
VAR __color = "Red"
VAR __lineColor = "Black"
VAR __lineThickness = 1
VAR __radius = 9
VAR __opacity = 1
VAR __rand = RAND()
VAR __header = "data&amp;amp;colon;image/svg+xml;utf8," &amp;amp;
              "&amp;lt;svg 
                xmlns:dc='http://purl.org/dc/elements/1.1/'
                xmlns:cc='http://creativecommons.org/ns#'
                xmlns:svg='http://www.w3.org/2000/svg'
                xmlns='http://www.w3.org/2000/svg'
                width='100%' height='100%'&amp;gt;"
VAR __footer = "&amp;lt;/svg&amp;gt;"
VAR __shapeTextCircle = "&amp;lt;circle cx='10' cy='30' r='" &amp;amp; __radius &amp;amp; "' fill='" &amp;amp; __color &amp;amp; "' fill-opacity='" &amp;amp; __opacity &amp;amp; "' stroke='" &amp;amp; __lineColor &amp;amp; "' stroke-width='" &amp;amp; __lineThickness &amp;amp; "'&amp;gt; " &amp;amp; "  &amp;lt;animateMotion 
    dur='1s'
    begin='1s'
    fill='freeze'
    path='M0,0 L0 10, L10 10, L10 0, L0 0'
    repeatCount='indefinite' /&amp;gt;
&amp;lt;/circle&amp;gt;"
RETURN IF([Flag],__header &amp;amp; __shapeTextCircle &amp;amp; __footer,"")
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Swipe&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Swipe = 
VAR __color = "Red"
VAR __lineColor = "Black"
VAR __lineThickness = 1
VAR __radius = 9
VAR __opacity = 1
VAR __rand = RAND()
VAR __header = "data&amp;amp;colon;image/svg+xml;utf8," &amp;amp;
              "&amp;lt;svg 
                xmlns:dc='http://purl.org/dc/elements/1.1/'
                xmlns:cc='http://creativecommons.org/ns#'
                xmlns:svg='http://www.w3.org/2000/svg'
                xmlns='http://www.w3.org/2000/svg'
                width='100%' height='100%'&amp;gt;"
VAR __footer = "&amp;lt;/svg&amp;gt;"
VAR __shapeTextCircle = "&amp;lt;circle cx='10' cy='30' r='" &amp;amp; __radius &amp;amp; "' fill='" &amp;amp; __color &amp;amp; "' fill-opacity='" &amp;amp; __opacity &amp;amp; "' stroke='" &amp;amp; __lineColor &amp;amp; "' stroke-width='" &amp;amp; __lineThickness &amp;amp; "'&amp;gt; " &amp;amp; "  &amp;lt;animateMotion 
    dur='1s'
    begin='5s'
    fill='freeze'
    path='M0,0c3.2-3.4,18.4-0.6,23.4-0.6c5.7,0.1,10.8,0.9,16.3,2.3    c13.5,3.5,26.1,9.6,38.5,16.2c12.3,6.5,21.3,16.8,31.9,25.4c10.8,8.7,21,18.3,31.7,26.9c9.3,7.4,20.9,11.5,31.4,16.7
    c13.7,6.8,26.8,9.7,41.8,9c21.4-1,40.8-3.7,61.3-10.4c10.9-3.5,18.9-11.3,28.5-17.8c5.4-3.7,10.4-6.7,14.8-11.5
    c1.9-2.1,3.7-5.5,6.5-6.5' 
    repeatCount='indefinite' /&amp;gt;
&amp;lt;/circle&amp;gt;"
RETURN IF([Flag],__header &amp;amp; __shapeTextCircle &amp;amp; __footer,"")
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Twirl&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Because spinning a circle about its' center does not make for great animation...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Twirl = 
VAR __color = "Red"
VAR __lineColor = "Black"
VAR __lineThickness = 1
VAR __radius = 9
VAR __opacity = 1
VAR __rand = RAND()
VAR __header = "data&amp;amp;colon;image/svg+xml;utf8," &amp;amp;
              "&amp;lt;svg 
                xmlns:dc='http://purl.org/dc/elements/1.1/'
                xmlns:cc='http://creativecommons.org/ns#'
                xmlns:svg='http://www.w3.org/2000/svg'
                xmlns='http://www.w3.org/2000/svg'
                width='100%' height='100%'&amp;gt;"
VAR __footer = "&amp;lt;/svg&amp;gt;"
VAR __shapeTextCircle = "&amp;lt;circle cx='20' cy='30' r='" &amp;amp; __radius &amp;amp; "' fill='" &amp;amp; __color &amp;amp; "' fill-opacity='" &amp;amp; __opacity &amp;amp; "' stroke='" &amp;amp; __lineColor &amp;amp; "' stroke-width='" &amp;amp; __lineThickness &amp;amp; "'&amp;gt; " &amp;amp; "
 &amp;lt;animateTransform 
           attributeName='transform' 
           attributeType='XML'
           type='rotate'
           from='0 25 25'
           to='360 25 25' 
           dur='1s'
           begin='0s'
           repeatCount='indefinite'/&amp;gt;
&amp;lt;/circle&amp;gt;"
RETURN IF([Flag],__header &amp;amp; __shapeTextCircle &amp;amp; __footer,"")
&lt;/PRE&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;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="reportid hidden"&gt;eyJrIjoiMGQ3NjU5NDQtYjhmMC00MjFlLTg1MzEtYzg5MjQ5MGY3NjBjIiwidCI6IjRhMDQyNzQzLTM3M2EtNDNkMi04MjdiLTAwM2Y0YzdiYTFlNSIsImMiOjN9&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Sep 2018 15:38:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/517631#M221</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2018-09-18T15:38:35Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Animation - Bouncing/Blinking Stephen Few 'Red Dot'</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/517691#M222</link>
      <description>&lt;P&gt;Perfect. The blick is exactly what I was looking for.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you Greg. This was helpful. I ll let you know if it satisfies my report requirements.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Sep 2018 14:53:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/517691#M222</guid>
      <dc:creator>betsyvimal</dc:creator>
      <dc:date>2018-09-17T14:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Animation - Bouncing/Blinking Stephen Few 'Red Dot'</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/524119#M224</link>
      <description>&lt;P&gt;Hi Greg, is it possible to add two images in one?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using circles filled with colors for representing the status of a specific process. But since there are a lot of rows and columns and colors involved I am trying to make it easy for the users to track a row.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to have a line in front and end of the circle so that it will look like a connected statuses using a line (attached an image) . I am assuming its possible but not sure how to&amp;nbsp;write the code for a line similar to how you ve given me one for circle. Is there a place where I can look at to get how these images can be coded?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Sep 2018 13:34:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/524119#M224</guid>
      <dc:creator>betsyvimal</dc:creator>
      <dc:date>2018-09-24T13:34:18Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Animation - Bouncing/Blinking Stephen Few 'Red Dot'</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/524180#M225</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="81998" data-lia-user-login="betsyvimal" class="lia-mention lia-mention-user"&gt;betsyvimal&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes it is, it is actually just multiple elements of a single image. For example, the below will get you a line with a white circle centered on it. See if this is more what you are thinking of:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;LineDot = 
VAR __indicator = SUM([Column1])
VAR __radius = 9
VAR __opacity = 1
VAR __lineColor = "Black"
VAR __color = "White"
VAR __header = "data&amp;amp;colon;image/svg+xml;utf8," &amp;amp;
              "&amp;lt;svg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='50' height='20'&amp;gt;"
VAR __footer = "&amp;lt;/svg&amp;gt;"
VAR __shapeTextCircle = "&amp;lt;circle cx='25' cy='10' r='" &amp;amp; __radius &amp;amp; "' fill='" &amp;amp; __color &amp;amp; "' fill-opacity='" &amp;amp; __opacity &amp;amp; "' stroke='Grey' stroke-width='1' /&amp;gt;"
VAR __shapeTextLine = "&amp;lt;line x1='0' y1='10' x2='50' y2='10' stroke='Black' stroke-width='4' /&amp;gt;"
VAR __shapeText = __shapeTextLine &amp;amp; __shapeTextCircle
VAR __return = __header &amp;amp; __shapeText &amp;amp; __footer
RETURN __return&lt;/PRE&gt;
&lt;P&gt;Now, we could extend the line and put another circle on the line as well but I was thinking that you would have multiple status indicators in your table columns or no? Also, if you want the blinking, I could put that in there as well so that just the circle blinks and not the line.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Sep 2018 14:36:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/524180#M225</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2018-09-24T14:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Animation - Bouncing/Blinking Stephen Few 'Red Dot'</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/524237#M226</link>
      <description>&lt;P&gt;Thank you Greg&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I ll attach one sample (snapshot) on how the status will look. A particular process will have one circle representing a status. IT could be a green circle for complete, blue for in progress etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The line will just connect the status of different processes together&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I used your code below to add a circle in front and end of the circle, but it looks like the attached (line and Circle)&lt;/P&gt;
&lt;P&gt;Status_Code is a column on one of the tables I ve.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;LineDot = &lt;BR /&gt;VAR __NA = "White"&lt;BR /&gt;VAR __lineColor = "Grey"&lt;BR /&gt;VAR __lineThickness = 2&lt;BR /&gt;VAR __radius = 9&lt;BR /&gt;VAR __opacity = 3&lt;BR /&gt;VAR __rand = RAND()&lt;BR /&gt;VAR __header = "data&amp;amp;colon;image/svg+xml;utf8," &amp;amp;&lt;BR /&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 &lt;BR /&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;nbsp;&amp;nbsp; xmlns:dc='&lt;A href="http://purl.org/dc/elements/1.1/" target="_blank"&gt;http://purl.org/dc/elements/1.1/&lt;/A&gt;'&lt;BR /&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;nbsp;&amp;nbsp; xmlns:cc='&lt;A href="http://creativecommons.org/ns#" target="_blank"&gt;http://creativecommons.org/ns#&lt;/A&gt;'&lt;BR /&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;nbsp;&amp;nbsp; xmlns:svg='&lt;A href="http://www.w3.org/2000/svg" target="_blank"&gt;http://www.w3.org/2000/svg&lt;/A&gt;'&lt;BR /&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;nbsp;&amp;nbsp; xmlns='&lt;A href="http://www.w3.org/2000/svg" target="_blank"&gt;http://www.w3.org/2000/svg&lt;/A&gt;'&lt;BR /&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;nbsp;&amp;nbsp; width='100%' height='100%'&amp;gt;"&lt;BR /&gt;VAR __footer = "&amp;lt;/svg&amp;gt;"&lt;BR /&gt;VAR __shapeblinkCircle = "&amp;lt;circle cx='10' cy='20' r='" &amp;amp; __radius &amp;amp; "' fill='" &amp;amp; __NA &amp;amp; "' fill-opacity='" &amp;amp; __opacity &amp;amp; "' stroke='" &amp;amp; __lineColor &amp;amp; "' stroke-width='" &amp;amp; __lineThickness &amp;amp; "'&amp;gt;&amp;lt;/circle&amp;gt;"&lt;BR /&gt;VAR __shapeTextLine = "&amp;lt;line x1='0' y1='10' x2='50' y2='10' stroke='Black' stroke-width='2' /&amp;gt;" &lt;BR /&gt;RETURN IF([Status_Code]="7",__header &amp;amp; __shapeTextLine &amp;amp; __shapeblinkCircle &amp;amp; __shapeTextLine &amp;amp; __footer,"")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Sep 2018 15:22:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/524237#M226</guid>
      <dc:creator>betsyvimal</dc:creator>
      <dc:date>2018-09-24T15:22:30Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Animation - Bouncing/Blinking Stephen Few 'Red Dot'</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/524273#M227</link>
      <description>&lt;P&gt;I adjusted the x and y coordinates to get what I wanted but somehow I am not able to get the circle in the middle of the line.Is there a way to fill the matrix column with a&amp;nbsp; line?&amp;nbsp;I can only get it cetner alligned and cannot increase the length of he line to fit the column.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;LineDot = &lt;BR /&gt;VAR __NA = "White"&lt;BR /&gt;VAR __lineColor = "Grey"&lt;BR /&gt;VAR __lineThickness = 2&lt;BR /&gt;VAR __radius = 9&lt;BR /&gt;VAR __opacity = 3&lt;BR /&gt;VAR __rand = RAND()&lt;BR /&gt;VAR __header = "data&amp;amp;colon;image/svg+xml;utf8," &amp;amp;&lt;BR /&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 &lt;BR /&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;nbsp;&amp;nbsp; xmlns:dc='&lt;A href="http://purl.org/dc/elements/1.1/" target="_blank"&gt;http://purl.org/dc/elements/1.1/&lt;/A&gt;'&lt;BR /&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;nbsp;&amp;nbsp; xmlns:cc='&lt;A href="http://creativecommons.org/ns#" target="_blank"&gt;http://creativecommons.org/ns#&lt;/A&gt;'&lt;BR /&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;nbsp;&amp;nbsp; xmlns:svg='&lt;A href="http://www.w3.org/2000/svg" target="_blank"&gt;http://www.w3.org/2000/svg&lt;/A&gt;'&lt;BR /&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;nbsp;&amp;nbsp; xmlns='&lt;A href="http://www.w3.org/2000/svg" target="_blank"&gt;http://www.w3.org/2000/svg&lt;/A&gt;'&lt;BR /&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;nbsp;&amp;nbsp; width='100%' height='100%'&amp;gt;"&lt;BR /&gt;VAR __footer = "&amp;lt;/svg&amp;gt;"&lt;BR /&gt;VAR __shapeblinkCircle = "&amp;lt;circle cx='20' cy='20' r='" &amp;amp; __radius &amp;amp; "' fill='" &amp;amp; __NA &amp;amp; "' fill-opacity='" &amp;amp; __opacity &amp;amp; "' stroke='" &amp;amp; __lineColor &amp;amp; "' stroke-width='" &amp;amp; __lineThickness &amp;amp; "'&amp;gt;&amp;lt;/circle&amp;gt;"&lt;BR /&gt;VAR __shapeTextLine = "&amp;lt;line x1='0' y1='20' x2='1000' y2='20' stroke='Blue' stroke-width='1' /&amp;gt;" &lt;BR /&gt;RETURN IF([Status_Code]="7",__header &amp;amp; __shapeTextLine &amp;amp; __shapeblinkCircle &amp;amp; __footer,"")&lt;/P&gt;</description>
      <pubDate>Mon, 24 Sep 2018 16:03:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/524273#M227</guid>
      <dc:creator>betsyvimal</dc:creator>
      <dc:date>2018-09-24T16:03:21Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Animation - Bouncing/Blinking Stephen Few 'Red Dot'</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/525306#M228</link>
      <description>&lt;P&gt;One small change should do it:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;LineDot = 
VAR __NA = "White"
VAR __lineColor = "Grey"
VAR __lineThickness = 2
VAR __radius = 9
VAR __opacity = 3
VAR __rand = RAND()
VAR __header = "data&amp;amp;colon;image/svg+xml;utf8," &amp;amp;
              "&amp;lt;svg 
                xmlns:dc='http://purl.org/dc/elements/1.1/'
                xmlns:cc='http://creativecommons.org/ns#'
                xmlns:svg='http://www.w3.org/2000/svg'
                xmlns='http://www.w3.org/2000/svg'
                width='100%' height='100%'&amp;gt;"
VAR __footer = "&amp;lt;/svg&amp;gt;"
VAR __shapeblinkCircle = "&amp;lt;circle cx='20' cy='20' r='" &amp;amp; __radius &amp;amp; "' fill='" &amp;amp; __NA &amp;amp; "' fill-opacity='" &amp;amp; __opacity &amp;amp; "' stroke='" &amp;amp; __lineColor &amp;amp; "' stroke-width='" &amp;amp; __lineThickness &amp;amp; "'&amp;gt;&amp;lt;/circle&amp;gt;"
VAR __shapeTextLine = "&amp;lt;line x1='0' y1='20' x2='100%' y2='20' stroke='Blue' stroke-width='1' /&amp;gt;" 
RETURN IF([Status_Code]="7",__header &amp;amp; __shapeTextLine &amp;amp; __shapeblinkCircle &amp;amp; __footer,"")&lt;/PRE&gt;</description>
      <pubDate>Tue, 25 Sep 2018 20:10:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/525306#M228</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2018-09-25T20:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Animation - Bouncing/Blinking Stephen Few 'Red Dot'</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/525390#M229</link>
      <description>&lt;P&gt;Hi Greg, I tried this solution&amp;nbsp;and I can get the circle in the middle with some tweaking but the line is still a concern. I cannot get it to extend and fill the column of the Matrix - Is there a way I can achieve this or I can get it done through other ways?&lt;/P&gt;
&lt;P&gt;Below is how it looks like now.&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;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also this code dint work for me, the image was not displayed. &amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;VAR __header = "&lt;U&gt;&lt;STRONG&gt;data&amp;amp;colon;&lt;/STRONG&gt;&lt;/U&gt;image/svg+xml;utf8,"&lt;/P&gt;
&lt;P&gt;I had to change it to&amp;nbsp;VAR __header = "data&amp;amp;colon;image/svg+xml;utf8,"&lt;/P&gt;</description>
      <pubDate>Tue, 25 Sep 2018 15:28:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/525390#M229</guid>
      <dc:creator>betsyvimal</dc:creator>
      <dc:date>2018-09-25T15:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Animation - Bouncing/Blinking Stephen Few 'Red Dot'</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/525594#M230</link>
      <description>&lt;P&gt;You have to replace the &amp;amp;colon; with an actual colon but when you paste that in code on this site, it converts the colon to &amp;amp;colon; for some reason.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regardless, in your line definition, just change x2='100' to x2='100%'&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Sep 2018 20:11:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/525594#M230</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2018-09-25T20:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Animation - Bouncing/Blinking Stephen Few 'Red Dot'</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/525629#M231</link>
      <description>&lt;P&gt;Hi Greg - I did change it to 100% as per your suggestion earlier. IT still give me the same image as per my previous screen shot. The line doesnt fill the colum. I tried changing the allignement of the values using Field formatiing but still couldnt get it to fill the column.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Sep 2018 20:50:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/525629#M231</guid>
      <dc:creator>betsyvimal</dc:creator>
      <dc:date>2018-09-25T20:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Animation - Bouncing/Blinking Stephen Few 'Red Dot'</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/751418#M363</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for the code.&lt;/P&gt;
&lt;P&gt;I tried to implement this,but I am getting simple IMAGE PATH(code pasted below) in the output.&lt;/P&gt;
&lt;P&gt;Can you explain this below SVG path&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT style="background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;FONT color="#000080"&gt;VAR __header = "data&amp;amp;colon;image/svg+xml;utf8," &amp;amp;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#000080"&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 &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#000080"&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;nbsp;&amp;nbsp; xmlns:dc='&lt;A href="http://purl.org/dc/elements/1.1/" target="_blank"&gt;http://purl.org/dc/elements/1.1/&lt;/A&gt;'&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#000080"&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;nbsp;&amp;nbsp; xmlns:cc='&lt;A href="http://creativecommons.org/ns#" target="_blank"&gt;http://creativecommons.org/ns#&lt;/A&gt;'&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#000080"&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;nbsp;&amp;nbsp; xmlns:svg='&lt;A href="http://www.w3.org/2000/svg" target="_blank"&gt;http://www.w3.org/2000/svg&lt;/A&gt;'&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#000080"&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;nbsp;&amp;nbsp; xmlns='&lt;A href="http://www.w3.org/2000/svg" target="_blank"&gt;http://www.w3.org/2000/svg&lt;/A&gt;'&lt;/FONT&gt;&lt;BR /&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;nbsp;&amp;nbsp; width='100%' height='100%'&amp;gt;"&lt;BR /&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT style="background-color: #ffffff;"&gt;If they are some external paths I wont be able to use those to get the image because of network restriction.Can you suggest something.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT style="background-color: #ffffff;"&gt;Thank you in advance.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2019 12:04:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/751418#M363</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-29T12:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Animation - Bouncing/Blinking Stephen Few 'Red Dot'</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/773022#M381</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;could you please explain below code or guide how to proceed.I want to create blinking pop up.As I am getting&amp;nbsp; XML code (below code)in output table when I use it in Test file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT style="background-color: #ffffff;"&gt;V&lt;STRONG&gt;AR __header = "data&amp;amp;colon;image/svg+xml;utf8," &amp;amp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&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 &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&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;nbsp;&amp;nbsp; xmlns:dc='&lt;A href="http://purl.org/dc/elements/1.1/" target="_blank" rel="noopener"&gt;http://purl.org/dc/elements/1.1/&lt;/A&gt;'&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&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;nbsp;&amp;nbsp; xmlns:cc='&lt;A href="http://creativecommons.org/ns#" target="_blank" rel="noopener"&gt;http://creativecommons.org/ns#&lt;/A&gt;'&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&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;nbsp;&amp;nbsp; xmlns:svg='&lt;A href="http://www.w3.org/2000/svg" target="_blank" rel="noopener"&gt;http://www.w3.org/2000/svg&lt;/A&gt;'&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&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;nbsp;&amp;nbsp; xmlns='&lt;A href="http://www.w3.org/2000/svg" target="_blank" rel="noopener"&gt;http://www.w3.org/2000/svg&lt;/A&gt;'&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&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;nbsp;&amp;nbsp; width='100%' height='100%'&amp;gt;"&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT style="background-color: #ffffff;"&gt;&lt;STRONG&gt;&lt;img /&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT style="background-color: #ffffff;"&gt;&lt;STRONG&gt;&lt;img /&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT style="background-color: #ffffff;"&gt;&lt;STRONG&gt;Thanks in advance.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2019 12:15:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/773022#M381</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-22T12:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Animation - Bouncing/Blinking Stephen Few 'Red Dot'</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/773811#M382</link>
      <description>&lt;P&gt;Not 100% I completely understand the question. A proper SVG must include the header as you have posted, the actual SVG graphic markup and the footer "&amp;lt;/svg&amp;gt;" to close the markup. If you do not include all three elements, it is not a proper SVG. In terms of the network restrictions, that's an interesting issue that I have not experimented with. Sounds like overly restrictive security.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Aug 2019 03:56:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/773811#M382</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2019-08-23T03:56:42Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Animation - Bouncing/Blinking Stephen Few 'Red Dot'</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/773940#M384</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt; ,&lt;/P&gt;
&lt;P&gt;My first issue of displaying Image has been resolved.I was missing out the Image Category property of measure.&lt;/P&gt;
&lt;P&gt;For second scenario where Network restriction is there,how will I embed the image in &amp;lt;/SVG&amp;gt; tag&lt;/P&gt;
&lt;P&gt;code where we put the Image URL to access it.&lt;/P&gt;
&lt;P&gt;Also&amp;nbsp; I want to show it as a blinking pop up in ellipse shape.Any suggestion how this can be achieved.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Aug 2019 07:10:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/773940#M384</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-23T07:10:39Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Animation - Bouncing/Blinking Stephen Few 'Red Dot'</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/887021#M405</link>
      <description>&lt;P&gt;Can the blink concept be implied to a KPI card?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Dec 2019 14:11:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/887021#M405</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-31T14:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Animation - Bouncing/Blinking Stephen Few 'Red Dot'</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/1092883#M525</link>
      <description>&lt;P&gt;Hi Greg,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How did you disable the SVG code on tool tip ?&lt;/P&gt;</description>
      <pubDate>Sun, 17 May 2020 02:09:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/1092883#M525</guid>
      <dc:creator>curiouspbix0</dc:creator>
      <dc:date>2020-05-17T02:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Animation - Bouncing/Blinking Stephen Few 'Red Dot'</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/1092888#M526</link>
      <description>I don't think I did. If you are asking how I could potentially do such a thing, first thing that comes to mind is custom tooltip page.  Otherwise, would have to think about it and experiment with it.</description>
      <pubDate>Sun, 17 May 2020 02:24:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/1092888#M526</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2020-05-17T02:24:20Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Animation - Bouncing/Blinking Stephen Few 'Red Dot'</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/1092889#M527</link>
      <description>&lt;P&gt;ok Greg, custom tooltip was the first thing I found not working on this animation.&lt;/P&gt;</description>
      <pubDate>Sun, 17 May 2020 02:26:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/1092889#M527</guid>
      <dc:creator>curiouspbix0</dc:creator>
      <dc:date>2020-05-17T02:26:49Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Animation - Bouncing/Blinking Stephen Few 'Red Dot'</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/1758330#M688</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;this looks really cool. I am trying to figure out a way to show a slowly blinking circle on a report to draw attention of users. I Tried to use the blink code measure as Text (using conditional formatting) for a blank button visual. I also tried to use it on its own in a table, in a card but I dont get to see that effect. Is it somehow possible to make use of it in above visuals?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 20:30:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/1758330#M688</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-31T20:30:09Z</dc:date>
    </item>
    <item>
      <title>Re: SVG Animation - Bouncing/Blinking Stephen Few 'Red Dot'</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/4232213#M1145</link>
      <description>&lt;P&gt;Hi Greg,&lt;/P&gt;&lt;P&gt;The blink formula I have implemented without any errors and also changed the Data Category as "Image URL", but when taking the measure onto table visual it's showing as broken as below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2024 16:53:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/SVG-Animation-Bouncing-Blinking-Stephen-Few-Red-Dot/m-p/4232213#M1145</guid>
      <dc:creator>pavankch24</dc:creator>
      <dc:date>2024-10-07T16:53:31Z</dc:date>
    </item>
  </channel>
</rss>

