<?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 change individual color in proc template in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/change-individual-color-in-proc-template/m-p/69869#M2445</link>
    <description>I use the following codes to generate the similar plot for the meta analysis&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/35/143.html" target="_blank"&gt;http://support.sas.com/kb/35/143.html&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
Now What if I only want to change "Overall" to bold ? &lt;BR /&gt;
&lt;BR /&gt;
the "Overall" is in the statement of &lt;BR /&gt;
&lt;BR /&gt;
scatterplot x=overallvalue y=overall / ..... &lt;BR /&gt;
So the overall in that plot seems a tick value. however there is no option such as textattrs ... &lt;BR /&gt;
&lt;BR /&gt;
Any help? Thank you very much</description>
    <pubDate>Mon, 22 Mar 2010 03:58:09 GMT</pubDate>
    <dc:creator>Fred_Gavin</dc:creator>
    <dc:date>2010-03-22T03:58:09Z</dc:date>
    <item>
      <title>change individual color in proc template</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/change-individual-color-in-proc-template/m-p/69869#M2445</link>
      <description>I use the following codes to generate the similar plot for the meta analysis&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/35/143.html" target="_blank"&gt;http://support.sas.com/kb/35/143.html&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
Now What if I only want to change "Overall" to bold ? &lt;BR /&gt;
&lt;BR /&gt;
the "Overall" is in the statement of &lt;BR /&gt;
&lt;BR /&gt;
scatterplot x=overallvalue y=overall / ..... &lt;BR /&gt;
So the overall in that plot seems a tick value. however there is no option such as textattrs ... &lt;BR /&gt;
&lt;BR /&gt;
Any help? Thank you very much</description>
      <pubDate>Mon, 22 Mar 2010 03:58:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/change-individual-color-in-proc-template/m-p/69869#M2445</guid>
      <dc:creator>Fred_Gavin</dc:creator>
      <dc:date>2010-03-22T03:58:09Z</dc:date>
    </item>
    <item>
      <title>Re: change individual color in proc template</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/change-individual-color-in-proc-template/m-p/69870#M2446</link>
      <description>This graph is a LAYOUT LATTICE of 5 columns.  &lt;BR /&gt;
- The first column is a SCATTERPLOT showing just the axis.,&lt;BR /&gt;
- The second column contains the BOXPLOT&lt;BR /&gt;
- Last three columns are scatter plots with MARKERCHAR&lt;BR /&gt;
&lt;BR /&gt;
You cannot change just one tick value of the axis, to make it bold.  However, you could replace the first column with a SCATTERPLOT using MARKERCHAR to simulate the axis.  You can split the column "Study2" in to two columns, 'A' having the observation "Overall" only, other being missing.  The other column 'B' will have all other observations.  Now, use two separeate SCATTERPLOT statements in first column, one each with these new columns 'A' &amp;amp; 'B'.  For the scatter plot with column 'A', set the MARKERCHARACTERATTRS=(size=10, weight=bold) to just make that one value stand out.&lt;BR /&gt;
&lt;BR /&gt;
Here is the template code for the first column.  The original scatterplot statement is commented out.  You have to build the new columns study2a and study2b.:&lt;BR /&gt;
&lt;BR /&gt;
  layout overlay / walldisplay=none border=false&lt;BR /&gt;
                   y2axisopts=(reverse=true type=discrete display=none)&lt;BR /&gt;
                   xaxisopts=(display=none offsetmin=0 offsetmax=0);&lt;BR /&gt;
    entry halign=left "             Study"  / textattrs=GraphLabelText location=outside valign=top;&lt;BR /&gt;
    scatterplot y=Study2 x=constant  / markercharacter=study2b yaxis=y2;&lt;BR /&gt;
	scatterplot y=Study2 x=constant  / markercharacter=study2a yaxis=y2 &lt;BR /&gt;
                markercharacterattrs=(size=10pt weight=bold);&lt;BR /&gt;
/*	scatterplot y=Study2 x=constant  / markercharacter=study2 yaxis=y2;*/&lt;BR /&gt;
  endlayout;</description>
      <pubDate>Tue, 23 Mar 2010 15:00:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/change-individual-color-in-proc-template/m-p/69870#M2446</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2010-03-23T15:00:27Z</dc:date>
    </item>
  </channel>
</rss>

