<?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: How to Create an Animated Chart using SGPlot Procedure in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-an-Animated-Chart-using-SGPlot-Procedure/m-p/283763#M10037</link>
    <description>&lt;P&gt;See animation example here: &amp;nbsp;&lt;A href="http://blogs.sas.com/content/graphicallyspeaking/2013/05/23/animation-using-sgplot/" target="_blank"&gt;http://blogs.sas.com/content/graphicallyspeaking/2013/05/23/animation-using-sgplot/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;GIF animations can be created using&amp;nbsp;the options shown. &amp;nbsp;You will have to create successive graphs with the animation you want.&lt;/P&gt;</description>
    <pubDate>Tue, 12 Jul 2016 13:26:27 GMT</pubDate>
    <dc:creator>Jay54</dc:creator>
    <dc:date>2016-07-12T13:26:27Z</dc:date>
    <item>
      <title>How to Create an Animated Chart using SGPlot Procedure</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-an-Animated-Chart-using-SGPlot-Procedure/m-p/283720#M10030</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to create an animated SGPlot-plot following the instructions on &lt;A href="http://support.sas.com/documentation/cdl/en/graphref/67881/HTML/default/viewer.htm#p0akj7ltqqbhqun1nfjuu2nucmnw.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/graphref/67881/HTML/default/viewer.htm#p0akj7ltqqbhqun1nfjuu2nucmnw.htm&lt;/A&gt; - or not following the instructions if you will (because it does not work).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like&amp;nbsp;the plot to be build in 3 steps. How can I put the code right?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data A (Drop=i);
  Retain Date '01JAN2000'd; Format Date Date9.;
  Do i=1 To 100;
    Date=IntNX('month',Date,1,'same');
	Value=Rand('uniform')+1;
	Output;
  End;
Run;

Options Animduration=10
        Animloop=YES
        Animoverlay;
Options Animate=START;
ODS HTML File='C:\Test.HTML';
Proc SGPlot Data=A (Where=(Date lt '01JAN2003'd));
  Series X=Date Y=Value;
  YAxis Min=0;
  XAxis Max='01JAN2010'd;
Run;
Proc SGPlot Data=A (Where=(Date lt '01JAN2006'd));
  Series X=Date Y=Value;
  YAxis Min=0;
  XAxis Max='01JAN2010'd;
Run;
Proc SGPlot Data=A;
  Series X=Date Y=Value;
  YAxis Min=0;
  XAxis Max='01JAN2010'd;
Run;
Options Animate=STOP;
ODS HTML Close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&amp;amp;kind regards&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2016 09:31:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-an-Animated-Chart-using-SGPlot-Procedure/m-p/283720#M10030</guid>
      <dc:creator>user24feb</dc:creator>
      <dc:date>2016-07-12T09:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create an Animated Chart using SGPlot Procedure</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-an-Animated-Chart-using-SGPlot-Procedure/m-p/283763#M10037</link>
      <description>&lt;P&gt;See animation example here: &amp;nbsp;&lt;A href="http://blogs.sas.com/content/graphicallyspeaking/2013/05/23/animation-using-sgplot/" target="_blank"&gt;http://blogs.sas.com/content/graphicallyspeaking/2013/05/23/animation-using-sgplot/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;GIF animations can be created using&amp;nbsp;the options shown. &amp;nbsp;You will have to create successive graphs with the animation you want.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2016 13:26:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-an-Animated-Chart-using-SGPlot-Procedure/m-p/283763#M10037</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2016-07-12T13:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create an Animated Chart using SGPlot Procedure</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-an-Animated-Chart-using-SGPlot-Procedure/m-p/283767#M10038</link>
      <description>&lt;P&gt;Is it possible to remove the creation time/date?&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2016 13:49:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-an-Animated-Chart-using-SGPlot-Procedure/m-p/283767#M10038</guid>
      <dc:creator>user24feb</dc:creator>
      <dc:date>2016-07-12T13:49:11Z</dc:date>
    </item>
  </channel>
</rss>

