<?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 Annotation on Bar Graph in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62445#M2097</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to seek help again on how am I suppose to create my desired output. What I want is similar to what is found on this example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/kb/24/865.html"&gt;http://support.sas.com/kb/24/865.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The additional thing I want is to put a label on the top of per dot to specify the value of the y. What I'm currently getting on my annotation is that it is placed on the right side of the dot. Would it be possible to place it on top instead? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Milton&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Sep 2011 06:43:36 GMT</pubDate>
    <dc:creator>milts</dc:creator>
    <dc:date>2011-09-09T06:43:36Z</dc:date>
    <item>
      <title>Annotation on Bar Graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62445#M2097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to seek help again on how am I suppose to create my desired output. What I want is similar to what is found on this example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/kb/24/865.html"&gt;http://support.sas.com/kb/24/865.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The additional thing I want is to put a label on the top of per dot to specify the value of the y. What I'm currently getting on my annotation is that it is placed on the right side of the dot. Would it be possible to place it on top instead? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Milton&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2011 06:43:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62445#M2097</guid>
      <dc:creator>milts</dc:creator>
      <dc:date>2011-09-09T06:43:36Z</dc:date>
    </item>
    <item>
      <title>Annotation on Bar Graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62446#M2098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you show what code you've added to get the annotations you're currently seeing to the right of the dots?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assume you're using the annotate 'label' function.&amp;nbsp; In combination with this function, you'll want to make sure you trim off leading &amp;amp; trailing blanks from your text&amp;nbsp; ...&amp;nbsp; text=trim(left(text));&amp;nbsp; ... and you'll probably want to use the annotate 'position' variable to make the text show up above the dot&amp;nbsp; ...&amp;nbsp; position='2';&amp;nbsp;&amp;nbsp; (although if you want it to be even farther above the dot, sometimes you might even add a little bit of offset to the y-variable).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2011 12:10:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62446#M2098</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2011-09-09T12:10:08Z</dc:date>
    </item>
    <item>
      <title>Annotation on Bar Graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62447#M2099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can produce this with the SGPLOT procedure without using annotation. See &lt;A href="http://support.sas.com/documentation/cdl/en/grstatproc/62920/HTML/default/viewer.htm#n1mp0swy0atvzun1oeqlkrg8d89o.htm"&gt;http://support.sas.com/documentation/cdl/en/grstatproc/62920/HTML/default/viewer.htm#n1mp0swy0atvzun1oeqlkrg8d89o.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the KB example you link to, the example would look something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data a;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; input Xvar mmddyy6. Vbar_Y Plot_Y;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; datalines;&lt;BR /&gt;010196 10 8&lt;BR /&gt;020196 20 15&lt;BR /&gt;030196 30 20&lt;BR /&gt;040196 40 36&lt;BR /&gt;050196 50 42&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc sgplot data=a noautolegend;&lt;BR /&gt;format xvar monname3.;&lt;BR /&gt;format Vbar_Y dollar6.;&lt;BR /&gt;vbar xvar / response=Vbar_Y;&lt;BR /&gt;vline xvar / response=Plot_Y markers&lt;BR /&gt;&amp;nbsp;&amp;nbsp; datalabel=Plot_Y;&lt;BR /&gt;xaxis display=(nolabel); yaxis label="Sales";&lt;BR /&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2011 12:34:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62447#M2099</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2011-09-09T12:34:29Z</dc:date>
    </item>
    <item>
      <title>Annotation on Bar Graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62448#M2100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also, you might be tempted to try to use "proc gbarline" and specify the 'pointlabel' option on the symbol statement, but that's not supported as of SAS 9.3 -- there is a request in for this feature to be added (S0175859), but no specific eta yet.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2011 12:43:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62448#M2100</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2011-09-09T12:43:05Z</dc:date>
    </item>
    <item>
      <title>Re: Annotation on Bar Graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62449#M2101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With SAS 9.3 (maybe this is a hint for future usage), you can get the label "exactly" on top of the value using DATALABELPOSITION option.&amp;nbsp; Unfortunately, we did not add this option to proc SGPLOT, but is availabel in GTL.&amp;nbsp;&amp;nbsp;&amp;nbsp; You can use this option to create your graph using Rick's data as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;proc template;
&amp;nbsp; define statgraph barline;
&amp;nbsp;&amp;nbsp;&amp;nbsp; begingraph;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; layout overlay;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; barchart x=xvar y=Vbar_Y;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; seriesplot x=xvar y=Plot_Y /&amp;nbsp; display=(markers) 
&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; datalabel=Plot_Y datalabelposition=top&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; datalabelattrs=(size=9) markerattrs=(symbol=circlefilled size=9);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; endlayout;
&amp;nbsp;&amp;nbsp;&amp;nbsp; endgraph;
&amp;nbsp; end;
run;

proc sgrender data=a template=barline;
&amp;nbsp; format plot_y 2.0;&lt;BR /&gt;&lt;P&gt;&amp;nbsp; format xvar monname3.;&lt;/P&gt;&lt;P&gt;&amp;nbsp; format Vbar_Y dollar6.;&lt;/P&gt;&amp;nbsp; run;&lt;BR /&gt;&lt;BR /&gt;&lt;IMG alt="BarLine_TopLabels.png" class="jive-image" src="https://communities.sas.com/legacyfs/online/1107_BarLine_TopLabels.png" /&gt;&lt;BR /&gt; &lt;/PRE&gt;&lt;P&gt; Note the format applied to the plot_y variable in the SGRENDER procedure.&amp;nbsp; To center the label it is important to strip all leading blanks. Label and marker sizes are increased in this code. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2011 14:11:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62449#M2101</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2011-09-09T14:11:39Z</dc:date>
    </item>
    <item>
      <title>Annotation on Bar Graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62450#M2102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dr. Allison,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You got it correct again thank you so much! My text had leading blanks on it. I just didn't understand how the position of '2' made it display on top of the plot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way, I used the code on your oil industry example from your website to create my annotation data set. I added these after the second output statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;function='label';text=target; size=1;y=target; position='2'; output;'&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The target variable is numeric causing them to have leading blanks. I just recreated the annotation dataset to trim of the leadings blanks and there I got the display I wanted.&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks again for your help! &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;/P&gt;&lt;P&gt;Milton&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Sep 2011 10:28:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62450#M2102</guid>
      <dc:creator>milts</dc:creator>
      <dc:date>2011-09-11T10:28:43Z</dc:date>
    </item>
    <item>
      <title>Annotation on Bar Graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62451#M2103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rick,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for this info. But I believe this type of graph is not yet available in 913? I'm currently developing for a client who only has 913. Hope they upgrade to the latest version. &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;/P&gt;&lt;P&gt;Milton&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Sep 2011 10:31:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62451#M2103</guid>
      <dc:creator>milts</dc:creator>
      <dc:date>2011-09-11T10:31:22Z</dc:date>
    </item>
    <item>
      <title>Annotation on Bar Graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62452#M2104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I have another concern. Now it actually works when I run it on Base SAS. But when I use this on a stored process the annotations won't appear. Currently it's on activex but when I change it to png or jpg the whole graph doesn't show up anymore. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I make it visible in the web?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2011 09:25:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62452#M2104</guid>
      <dc:creator>milts</dc:creator>
      <dc:date>2011-09-15T09:25:46Z</dc:date>
    </item>
    <item>
      <title>Annotation on Bar Graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62453#M2105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Could you show the code you're using for the stored process?&amp;nbsp; If you had hard-coded ODS statements to write to a file, you'll need to take those out.&amp;nbsp; Also, to change the device, you have to set some special macro variables before you call the stpbegin macro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, what settings did you use when you registered the stored process?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And are you running the stored process via a URL (stored process webapp url), or through the Portal, or through EG, or other?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2011 12:17:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62453#M2105</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2011-09-15T12:17:34Z</dc:date>
    </item>
    <item>
      <title>Annotation on Bar Graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62454#M2106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please code below. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The setting for my stored process is streaming. I'm running this through a stored process portlet in portal. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _null_;&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;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;&amp;nbsp;file _webout;&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;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;&amp;nbsp;put "&amp;lt;html&amp;gt;";&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;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;&amp;nbsp;put "&amp;lt;head&amp;gt;";&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;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;&amp;nbsp;put "&amp;lt;/head&amp;gt;";&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;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;&amp;nbsp;put "&amp;lt;body&amp;gt;";&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;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;&amp;nbsp;put '&amp;lt;table border="1" width="100%"&amp;gt;';&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;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;&amp;nbsp;put '&amp;lt;tr&amp;gt;&amp;lt;td width="80%"&amp;gt;';&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%stpbegin;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;goptions reset=all;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;goptions cback=white device=activex vsize=3in hsize=10.5in transparency; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;axis1 label=none;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;axis2 label=none order=(0 to 100 by 20);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;pattern1 v=solid color=cx007DC3; /* SELECTION */&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;pattern2 v=solid color=cxD16600; /* OTHERS */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; legend1 label=none;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%let save_year = &amp;amp;save_year.;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;data _null_;&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;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ystart = mdy(1,1,&amp;amp;save_year.);&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;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;yend = intnx('year',ystart,0,'end');&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;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;call symput('ystart',ystart);&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;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;call symput('yend',yend);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; proc gchart&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;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;data=coll_merged_&amp;amp;_METAUSER.; &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;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;vbar month / sumvar=collections&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;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;&amp;nbsp;subgroup=group&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;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;&amp;nbsp;midpoints=&amp;amp;ystart. to &amp;amp;yend. by month&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;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;&amp;nbsp;anno=coll_anno_&amp;amp;_METAUSER&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;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;&amp;nbsp;maxis=axis1&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;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;&amp;nbsp;raxis=axis2&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;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;&amp;nbsp;legend=legend1&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;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;&amp;nbsp;width=6&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;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;;&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;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;format month monname3. collections comma25.0;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%stpend; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;data _null_;&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;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;file _webout;&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;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;put '&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;I'll be putting something else here';&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;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;put '&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;';&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;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;put '&amp;lt;/table&amp;gt;';&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;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;put "&amp;lt;/body&amp;gt;";&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;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;put "&amp;lt;/html&amp;gt;";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Sep 2011 01:04:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62454#M2106</guid>
      <dc:creator>milts</dc:creator>
      <dc:date>2011-09-16T01:04:02Z</dc:date>
    </item>
    <item>
      <title>Annotation on Bar Graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62455#M2107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hmm ... let's simplify first, by getting rid of the data steps with the 'put' statements at the beginning &amp;amp; end of the program, just to get the graph &amp;amp; the annotation working first (divide &amp;amp; conquer - one problem at a time)...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, I notice you're using "goptions device=activex" -- although that works in DMS and Batch jobs, you have to set the device a different way in Stored Processes.&amp;nbsp; Try the following code, and try changing the device between activex and png, and make sure it's doing what it should:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; %let _GOPT_DEVICE=png;&lt;/P&gt;&lt;P&gt; %let _ODSOPTIONS=gtitle gfootnote style=sasweb;&lt;/P&gt;&lt;P&gt; %stpbegin;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* run your proc g-whatever here */&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt; %stpend;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Sep 2011 12:11:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62455#M2107</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2011-09-16T12:11:18Z</dc:date>
    </item>
    <item>
      <title>Annotation on Bar Graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62456#M2108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I use png as the value for _GOPT_DEVICE the graph will display along with the desired annotations. However, the display got messed up. I've been trying to play with the other reserved macro variables which alter the resolution of the graph. Unfortunately I have failed to get my desired display. Below is the options I used, and the display I got. I tried to remove the vsize and hsize but I just got an almost similar output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; %global _odsdest _odsstyle _gopt_device _odsoptions _goptions _gopt_vsize _gopt_hsize;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%let _gopt_device=png;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%let _gopt_vsize=3in;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%let _gopt_hsize=6in;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%let _goptions=gunit=pct cback=white htext=4 ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%let _odsdest=html;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%stpbegin;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;axis1 label=none;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;axis2 label=none;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;pattern1 v=solid color=cx007DC3; /* SELECTION */&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;pattern2 v=solid color=cxD16600; /* OTHERS */ &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;legend1 label=none position=(middle right) frame;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="graph_tofix.jpg" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/1137_graph_tofix.jpg" style="border-style: initial; border-color: initial; margin: 12px;" width="450" /&gt;&lt;/P&gt;&lt;P&gt; Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Sep 2011 09:51:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62456#M2108</guid>
      <dc:creator>milts</dc:creator>
      <dc:date>2011-09-19T09:51:22Z</dc:date>
    </item>
    <item>
      <title>Annotation on Bar Graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62457#M2109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; I haven't used stored processes much, so I'm no expert, but here are some things to try...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does it work &amp;amp; look ok if you take out all the hsize/vsize specifications and just let it use the default png full size display (800x600 pixels, I think).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With device=png, I almost always use goptions xpixels &amp;amp; ypixels to control the size (rather than hsize &amp;amp; vsize).&amp;nbsp; Maybe give that a try, and maybe try defining a larger display area (at least at first, until the bar chart layout is displaying ok ... and then try reducing the size until it ceases to fit).&amp;nbsp; I guess you could use the _gopt_xpixels &amp;amp; _gopt_ypixels before you call stpbegin - but at least in early versions of the stored process when I was working with them, I set them after the stpbegin, such as ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let _GOPT_DEVICE=gif;&lt;/P&gt;&lt;P&gt;%let _ODSOPTIONS=gtitle gfootnote style=minimal;&lt;/P&gt;&lt;P&gt;%stpbegin;&lt;/P&gt;&lt;P&gt;goptions xpixels=400 ypixels=300;&lt;/P&gt;&lt;P&gt;/* proc gchart, etc */&lt;/P&gt;&lt;P&gt;%stpend;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does your code run ok with dev=png *outside* of a stored process? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another thing to try, to get the bar chart where it's fitting into the small space, it to reduce the font size (such as goptions ftext=1.5pct;)&amp;nbsp; Once you get it drawing the chart ok, then you can slowly try increasing the size of the font to see how big you can get it before the chart can't draw itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And one question - I notice you're defining your macro variables as global variables.&amp;nbsp; I'm not sure that hurts anything, but I've never seen that done - maybe try it without declaring them global, and see if that makes a difference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... Sorry I don't have a definitive answer, but hopefully one of these tips will help!&amp;nbsp; If none of them help, then perhaps it's time for a call to tech support &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>Mon, 19 Sep 2011 12:31:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62457#M2109</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2011-09-19T12:31:52Z</dc:date>
    </item>
    <item>
      <title>Annotation on Bar Graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62458#M2110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get error messages when I don't declare them as global variables that's why I had to put them before assigning a value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since I'm running out of time I just retained with my activex output since it displays neatly without the annotations however. Reason why annotations did not appear is I think it is not supported yet on 913 according to Problem Note &lt;EM&gt;13691. &lt;/EM&gt;How I wish client would just upgrade to 92 instead haha!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No need to be sorry. You actually took me to the next level when it comes to SAS graphs. &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;/P&gt;&lt;P&gt;Thanks a lot for the help on this!&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2011 04:40:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62458#M2110</guid>
      <dc:creator>milts</dc:creator>
      <dc:date>2011-09-20T04:40:07Z</dc:date>
    </item>
    <item>
      <title>Annotation on Bar Graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62459#M2111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also found a track raised by Angela when vbars have subgroups. It won't display the annotations.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2011 04:46:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62459#M2111</guid>
      <dc:creator>milts</dc:creator>
      <dc:date>2011-09-20T04:46:43Z</dc:date>
    </item>
    <item>
      <title>Annotation on Bar Graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62460#M2112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I stated in my previous posts, the annotations do not reflect on the graph. However when we tried to view it on a different machine and probably a newer version of IE, it suddenly worked!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Must have been the activex driver installed on the development machine which causes me to get undesirable results. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again thanks a lot for the help! &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>Wed, 21 Sep 2011 05:45:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62460#M2112</guid>
      <dc:creator>milts</dc:creator>
      <dc:date>2011-09-21T05:45:14Z</dc:date>
    </item>
    <item>
      <title>Annotation on Bar Graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62461#M2113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It appears you might be using some features that are supported in newer versions of SAS/Graph ActiveX control, but not in older versions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If that's the case, it would be a good idea to set up your graphs such that they prompt the user to install the newer version, if they do not have it.&amp;nbsp; You can set this up, using the technique described on this page:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/graphref/63022/HTML/default/viewer.htm#a002195362.htm"&gt;http://support.sas.com/documentation/cdl/en/graphref/63022/HTML/default/viewer.htm#a002195362.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Sep 2011 13:43:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62461#M2113</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2011-09-21T13:43:00Z</dc:date>
    </item>
    <item>
      <title>Annotation on Bar Graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62462#M2114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As investigated yeah it was the version of the activex control. On the dev machine it has the activex for 913. On the laptop where I saw the annotations displayed correctly it was 92 software installed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the link. Will try to implement that one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Sep 2011 06:56:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Annotation-on-Bar-Graph/m-p/62462#M2114</guid>
      <dc:creator>milts</dc:creator>
      <dc:date>2011-09-22T06:56:47Z</dc:date>
    </item>
  </channel>
</rss>

