<?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: Help with legend in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94412#M3538</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In that case, you could use the '1' coordinate system (such that you can specify x/y coordinates in the range of 0-100% of the area inside the axes).&amp;nbsp; Here is the code that draws the orange area that way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hsys='3'; when='b';&lt;/P&gt;&lt;P&gt;function = 'move'; xsys='2'; x=2008; ysys='1'; y=0; output;&lt;/P&gt;&lt;P&gt;function="bar";&amp;nbsp; xsys='1'; x=100; ysys='1'; y=100;&lt;/P&gt;&lt;P&gt; color="orange"; line=1; style="solid"; output;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Oct 2012 12:09:49 GMT</pubDate>
    <dc:creator>GraphGuy</dc:creator>
    <dc:date>2012-10-23T12:09:49Z</dc:date>
    <item>
      <title>Help with legend</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94400#M3526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;If I fill some area on a line graph (that is using annotate dataset, I create a box in some area of the graph and color the box with say blue ).&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Now how do I create a legend value of this color??&amp;nbsp; (the line graph will already be having a legend value associated with it&amp;nbsp; for say 'amount' variable or any statistic variable.)... so how do I add the above color as a legend&amp;nbsp; value to the existing default legend..???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Oct 2012 05:49:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94400#M3526</guid>
      <dc:creator>VijayKumar</dc:creator>
      <dc:date>2012-10-13T05:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: Help with legend</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94401#M3527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do we have any experts to answer this question? Any suggestions will be highly appreciative...&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Oct 2012 11:27:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94401#M3527</guid>
      <dc:creator>VijayKumar</dc:creator>
      <dc:date>2012-10-13T11:27:18Z</dc:date>
    </item>
    <item>
      <title>Re: Help with legend</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94402#M3528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is how you can do it using the Graph Template Language (GTL) in SAS 9.3:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE lang="SAS"&gt;proc template;
define statgraph plot;
begingraph / drawspace=datavalue;
legenditem type=fill name="box" / label="The Alfred Box" fillattrs=(color=orange transparency=0.75); 
layout overlay;
&amp;nbsp; scatterplot y=weight x=height / group=sex name="scatter";
&amp;nbsp; drawrectangle x=69 y=112.5 width=10 height=15 / 
&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; display=all fillattrs=(color=orange) 
&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; transparency=0.75;&amp;nbsp; 
&amp;nbsp; drawtext "Alfred" / x=69 y=112&amp;nbsp; anchor=top; 
&amp;nbsp; discretelegend "scatter" "box";
endlayout;
endgraph;
end;
run;

proc sgrender data=sashelp.class template=plot; run;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Alfred.png" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/2621_Alfred.png" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Oct 2012 15:04:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94402#M3528</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2012-10-13T15:04:09Z</dc:date>
    </item>
    <item>
      <title>Re: Help with legend</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94403#M3529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks DanH for your reply and providing a solution.&lt;/P&gt;&lt;P&gt;I am actually using SAS9.2.&amp;nbsp; Running your code gave error at drawspace and legenditem............&lt;/P&gt;&lt;P&gt;Still I tried running the below simple proc template via EG to check step by step..&amp;nbsp;&amp;nbsp; but got error:&lt;BR /&gt;ERROR: Insufficient authorization to access ...path../SASApp/SGRender1.png. &lt;/P&gt;&lt;P&gt;proc template;&lt;BR /&gt;&amp;nbsp; define statgraph histogram;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; begingraph;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; layout overlay;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; histogram weight;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; endlayout;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; endgraph;&lt;BR /&gt;&amp;nbsp; end;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;ods graphics / width=450px;&lt;BR /&gt;ods listing;&lt;BR /&gt;proc sgrender data=sashelp.class&lt;BR /&gt;&amp;nbsp; template=histogram;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Then I tried running same via unix prompt and got error:&lt;/P&gt;&lt;P&gt;ERROR: The connection to the X display server could not be made....&lt;/P&gt;&lt;P&gt;But when running normal gplot and gchart procedures its not giving X display error....&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Oct 2012 15:33:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94403#M3529</guid>
      <dc:creator>VijayKumar</dc:creator>
      <dc:date>2012-10-14T15:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: Help with legend</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94404#M3530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have an X-server running somewhere that you could set your 'DISPLAY' to?&lt;/P&gt;&lt;P&gt;(Maybe an XMing or Hummingbird eXceed X-server running somewhere?)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Such as:&amp;nbsp;&amp;nbsp;&amp;nbsp; export DISPLAY=somemachine.foo.unx:0.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the past, SAS/Graph running on Unix needed an X-display to query what fonts were available.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After SAS version 9.2, I don't think SAS/Graph needs an X-display anymore, but maybe the ODS Graphics (such as proc sgrender) need it(?) - I'm not 100% sure on that one, but it's probably worth a try.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2012 13:42:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94404#M3530</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2012-10-15T13:42:00Z</dc:date>
    </item>
    <item>
      <title>Re: Help with legend</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94405#M3531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ODS Graphics does not need a display to run. When you say, "via unix prompt", are you running in batch, or with -nodms?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2012 15:05:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94405#M3531</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2012-10-15T15:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: Help with legend</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94406#M3532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;On unix prompt ; I just type&amp;nbsp; &amp;gt;&amp;nbsp; sas program_name.sas&lt;/P&gt;&lt;P&gt;But when I run any other sas program that has GPLOT &amp;amp; GCHART&amp;nbsp; (via unix prompt or EG), it runs fine without any issues. &lt;/P&gt;&lt;P&gt;Before my previous reply , I had tried&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; export display=host:port&amp;nbsp; but that wasn't working...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2012 20:18:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94406#M3532</guid>
      <dc:creator>VijayKumar</dc:creator>
      <dc:date>2012-10-15T20:18:12Z</dc:date>
    </item>
    <item>
      <title>Re: Help with legend</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94407#M3533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Below is the code that I can run in SAS9.2 and get the output. Is it possible to do some changes /addition to this code and get a legend displayed for the orange color in the graph.&lt;BR /&gt;I mean there must be some trick to fool SAS..&amp;nbsp; &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;data carea;&lt;BR /&gt; LENGTH FUNCTION $8 STYLE $8 COLOR $8;&lt;BR /&gt; retain xsys ysys "2" hsys "3" when "b"; &lt;BR /&gt; function = 'move'; x=2008; y=2000; output;&lt;BR /&gt; function="bar";&amp;nbsp; x=2011; y=6000; color="orange"; line=1; style="simplex"; output; &lt;BR /&gt;run;&amp;nbsp; &lt;BR /&gt;symbol v=dot i=join;&lt;BR /&gt;legend1 label=none;&lt;BR /&gt;proc gplot data=sales;&lt;BR /&gt; plot (sale) * year/ legend=legend1 annotate=carea;&lt;BR /&gt; run;&lt;BR /&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Oct 2012 03:07:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94407#M3533</guid>
      <dc:creator>VijayKumar</dc:creator>
      <dc:date>2012-10-22T03:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: Help with legend</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94408#M3534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is the output :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="legend.jpg" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/2633_legend.jpg" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Oct 2012 04:16:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94408#M3534</guid>
      <dc:creator>VijayKumar</dc:creator>
      <dc:date>2012-10-22T04:16:05Z</dc:date>
    </item>
    <item>
      <title>Re: Help with legend</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94409#M3535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The following example shows how to manually annotate a legend for the orange color:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let name=anno_legend;&lt;BR /&gt;filename odsout '.';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data sales;&lt;BR /&gt;format Sale comma10.0;&lt;BR /&gt;input Year Sale;&lt;BR /&gt;datalines;&lt;BR /&gt;2002 2100&lt;BR /&gt;2003 4000&lt;BR /&gt;2004 3200&lt;BR /&gt;2005 5100&lt;BR /&gt;2006 3300&lt;BR /&gt;2007 2600&lt;BR /&gt;2008 5000&lt;BR /&gt;2009 5200&lt;BR /&gt;2010 5400&lt;BR /&gt;2011 5600&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data color_area;&lt;BR /&gt;LENGTH FUNCTION $8 STYLE $8 COLOR $8;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xsys='2'; ysys='2'; hsys='3'; when='b';&lt;BR /&gt;function = 'move'; x=2008; y=2000; output;&lt;BR /&gt;function="bar";&amp;nbsp; x=2011; y=6000;&lt;BR /&gt; color="orange"; line=1; style="solid"; output;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Draw a custom legend with annotate */&lt;BR /&gt;xsys='3'; ysys='3'; hsys='3'; when='a';&lt;BR /&gt;function = 'move'; x=60; y=1; output;&lt;BR /&gt;function="bar";&amp;nbsp; x=x+3; y=y+3;&lt;BR /&gt; color="orange"; line=1; style="solid"; output;&lt;BR /&gt;function="label"; color='black'; position='6'; x=64.5; y=3;&lt;BR /&gt; text="Orange Area"; output;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;goptions device=png;&lt;BR /&gt;ODS LISTING CLOSE;&lt;BR /&gt;ODS HTML path=odsout body="&amp;amp;name..htm" style=htmlblue;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;symbol1 value=dot height=1.5 interpol=join color=black;&lt;BR /&gt;legend1 label=none;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;axis1 minor=none offset=(0,0);&lt;BR /&gt;axis2 minor=none offset=(0,0);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc gplot data=sales;&lt;BR /&gt;plot sale*year=1 /&lt;BR /&gt; legend=legend1 annotate=color_area&lt;BR /&gt; vaxis=axis1 haxis=axis2&lt;BR /&gt; des='' name="&amp;amp;name";&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ODS HTML CLOSE;&lt;BR /&gt;ODS LISTING;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Oct 2012 12:44:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94409#M3535</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2012-10-22T12:44:52Z</dc:date>
    </item>
    <item>
      <title>Re: Help with legend</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94410#M3536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is the output:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="anno_legend.png" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/2634_anno_legend.png" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Oct 2012 12:46:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94410#M3536</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2012-10-22T12:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Help with legend</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94411#M3537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Robert !&amp;nbsp; This works...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only thing is if footnotes are added or if the height of graph area changes, then adjustment will have to be made to the co-ordinates of this legend...right?&amp;nbsp;&amp;nbsp; Other than that this looks great!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One small question..&lt;/P&gt;&lt;P&gt;In above example to draw a bar , we start from x=2008, y=2000&amp;nbsp; till x1=2011 , y1=6000.&lt;/P&gt;&lt;P&gt;Suppose if the data keeps on changing then we dont know what exactly will be thevalue for y,x1,y1.&lt;BR /&gt;But we know only x (i.e., 2008...from where the fill area should start ) and that starting from 2008 till the maximum point on X-axis all of the area needs to be filled with a color. Is it possible to do something like .... Move to point 2008 on X-axis; then draw a straight line till the top of the plot area; then fill all of the area on the right side of this straight line?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2012 04:22:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94411#M3537</guid>
      <dc:creator>VijayKumar</dc:creator>
      <dc:date>2012-10-23T04:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: Help with legend</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94412#M3538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In that case, you could use the '1' coordinate system (such that you can specify x/y coordinates in the range of 0-100% of the area inside the axes).&amp;nbsp; Here is the code that draws the orange area that way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hsys='3'; when='b';&lt;/P&gt;&lt;P&gt;function = 'move'; xsys='2'; x=2008; ysys='1'; y=0; output;&lt;/P&gt;&lt;P&gt;function="bar";&amp;nbsp; xsys='1'; x=100; ysys='1'; y=100;&lt;/P&gt;&lt;P&gt; color="orange"; line=1; style="solid"; output;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2012 12:09:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94412#M3538</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2012-10-23T12:09:49Z</dc:date>
    </item>
    <item>
      <title>Re: Help with legend</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94413#M3539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excellent! this works.... Thanks Robert, u r great!!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2012 15:13:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Help-with-legend/m-p/94413#M3539</guid>
      <dc:creator>VijayKumar</dc:creator>
      <dc:date>2012-10-23T15:13:57Z</dc:date>
    </item>
  </channel>
</rss>

