<?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: sgplot: vline datalabel font size in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-vline-datalabel-font-size/m-p/46535#M1583</link>
    <description>One other note: the default style for ODS RTF is the RTF style. You may want to change the PARENT in the BIGLABEL style to be styles.rtf to get your previous output appearance.&lt;BR /&gt;
&lt;BR /&gt;
Thanks!&lt;BR /&gt;
Dan</description>
    <pubDate>Tue, 07 Dec 2010 21:38:04 GMT</pubDate>
    <dc:creator>DanH_sas</dc:creator>
    <dc:date>2010-12-07T21:38:04Z</dc:date>
    <item>
      <title>sgplot: vline datalabel font size</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-vline-datalabel-font-size/m-p/46529#M1577</link>
      <description>Does anyone know how to increase the font size for datalabel?&lt;BR /&gt;
proc sgplot data=yrp;&lt;BR /&gt;
vbar yoi / response=yr_tot;&lt;BR /&gt;
vline yoi / response=avg y2axis datalabel=avg;&lt;BR /&gt;
y2axis min=0 max=10000;&lt;BR /&gt;
run; &lt;BR /&gt;
Thank you.</description>
      <pubDate>Tue, 07 Dec 2010 20:35:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-vline-datalabel-font-size/m-p/46529#M1577</guid>
      <dc:creator>gzr2mz39</dc:creator>
      <dc:date>2010-12-07T20:35:47Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot: vline datalabel font size</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-vline-datalabel-font-size/m-p/46530#M1578</link>
      <description>Hey,&lt;BR /&gt;
&lt;BR /&gt;
For now, you must adjust the size through the ODS style. Here is a simple example:&lt;BR /&gt;
[pre]&lt;BR /&gt;
proc template;&lt;BR /&gt;
define style biglabel;&lt;BR /&gt;
parent=styles.listing; /* or your favorite style */&lt;BR /&gt;
style GraphDataText from GraphDataText /&lt;BR /&gt;
   fontsize=10pt;&lt;BR /&gt;
end;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
ods listing style=biglabel;&lt;BR /&gt;
proc sgplot data=sashelp.class;&lt;BR /&gt;
scatter x=weight y=height / datalabel;&lt;BR /&gt;
run;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
Hope this helps,&lt;BR /&gt;
Dan</description>
      <pubDate>Tue, 07 Dec 2010 20:52:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-vline-datalabel-font-size/m-p/46530#M1578</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2010-12-07T20:52:50Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot: vline datalabel font size</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-vline-datalabel-font-size/m-p/46531#M1579</link>
      <description>A png file was created that looked correct.&lt;BR /&gt;
However the graph in my rtf file (I'm using ods rtf) did not reflect the change.&lt;BR /&gt;
Thank you.</description>
      <pubDate>Tue, 07 Dec 2010 21:11:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-vline-datalabel-font-size/m-p/46531#M1579</guid>
      <dc:creator>gzr2mz39</dc:creator>
      <dc:date>2010-12-07T21:11:01Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot: vline datalabel font size</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-vline-datalabel-font-size/m-p/46532#M1580</link>
      <description>Hi:&lt;BR /&gt;
  You might be looking at the old file, especially if Word was still open when you reran your code. Are you seeing any messages in the log, such as:&lt;BR /&gt;
[pre]&lt;BR /&gt;
ERROR: File is in use, C:\temp\report.rtf.&lt;BR /&gt;
[/pre]&lt;BR /&gt;
                     &lt;BR /&gt;
cynthia</description>
      <pubDate>Tue, 07 Dec 2010 21:15:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-vline-datalabel-font-size/m-p/46532#M1580</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-12-07T21:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot: vline datalabel font size</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-vline-datalabel-font-size/m-p/46533#M1581</link>
      <description>Also make sure you specified the style on the ODS RTF statement.</description>
      <pubDate>Tue, 07 Dec 2010 21:17:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-vline-datalabel-font-size/m-p/46533#M1581</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2010-12-07T21:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot: vline datalabel font size</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-vline-datalabel-font-size/m-p/46534#M1582</link>
      <description>You are correct. I didn't add the style to ods rtf statement. Thank you.</description>
      <pubDate>Tue, 07 Dec 2010 21:31:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-vline-datalabel-font-size/m-p/46534#M1582</guid>
      <dc:creator>gzr2mz39</dc:creator>
      <dc:date>2010-12-07T21:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot: vline datalabel font size</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-vline-datalabel-font-size/m-p/46535#M1583</link>
      <description>One other note: the default style for ODS RTF is the RTF style. You may want to change the PARENT in the BIGLABEL style to be styles.rtf to get your previous output appearance.&lt;BR /&gt;
&lt;BR /&gt;
Thanks!&lt;BR /&gt;
Dan</description>
      <pubDate>Tue, 07 Dec 2010 21:38:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-vline-datalabel-font-size/m-p/46535#M1583</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2010-12-07T21:38:04Z</dc:date>
    </item>
  </channel>
</rss>

