<?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 Any symbol list for SAS graph? in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Any-symbol-list-for-SAS-graph/m-p/11235#M162</link>
    <description>We have "star", "Circle", "Square", "Diamond", etc as options in symbol statement.&lt;BR /&gt;
&lt;BR /&gt;
Do we have any "Solid Diamond", "Solid Square" options?&lt;BR /&gt;
Where can I find a full list of all these options?&lt;BR /&gt;
&lt;BR /&gt;
Thanks a lot!</description>
    <pubDate>Tue, 03 Nov 2009 18:43:55 GMT</pubDate>
    <dc:creator>Ken_oy</dc:creator>
    <dc:date>2009-11-03T18:43:55Z</dc:date>
    <item>
      <title>Any symbol list for SAS graph?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Any-symbol-list-for-SAS-graph/m-p/11235#M162</link>
      <description>We have "star", "Circle", "Square", "Diamond", etc as options in symbol statement.&lt;BR /&gt;
&lt;BR /&gt;
Do we have any "Solid Diamond", "Solid Square" options?&lt;BR /&gt;
Where can I find a full list of all these options?&lt;BR /&gt;
&lt;BR /&gt;
Thanks a lot!</description>
      <pubDate>Tue, 03 Nov 2009 18:43:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Any-symbol-list-for-SAS-graph/m-p/11235#M162</guid>
      <dc:creator>Ken_oy</dc:creator>
      <dc:date>2009-11-03T18:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: Any symbol list for SAS graph?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Any-symbol-list-for-SAS-graph/m-p/11236#M163</link>
      <description>If you hit F1 to open SAS Help, and in the Index tab, search for SYMBOL Statement Syntax, you will find a table (scroll down) showing the value and the symbol.

Message was edited by: Paige</description>
      <pubDate>Tue, 03 Nov 2009 19:07:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Any-symbol-list-for-SAS-graph/m-p/11236#M163</guid>
      <dc:creator>Paige</dc:creator>
      <dc:date>2009-11-03T19:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: Any symbol list for SAS graph?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Any-symbol-list-for-SAS-graph/m-p/11237#M164</link>
      <description>Here's a quick sample, showing the current empty 'diamond' shape:&lt;BR /&gt;
&lt;BR /&gt;
symbol1 v=diamond h=7pct c=red;&lt;BR /&gt;
proc gplot data=sashelp.class;&lt;BR /&gt;
plot height*weight=1;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
I believe several filled markers, which you can specify directly on the symbol statement's "value=" are being added in v9.3, such that you could specify &lt;BR /&gt;
something like ...&lt;BR /&gt;
&lt;BR /&gt;
symbol1 v=diamondfilled h=7pct c=red;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
But, in the meantime, you can specify any font character that you might have&lt;BR /&gt;
access to (especially in v9.2 sas, which also supports unicode characters).&lt;BR /&gt;
Here is an example, using a solid diamond from the Windows Wingdings font, &lt;BR /&gt;
(character '75'-hex) for example.&lt;BR /&gt;
&lt;BR /&gt;
symbol1 font="wingdings" v='75'x h=7pct c=red;&lt;BR /&gt;
proc gplot data=sashelp.class;&lt;BR /&gt;
plot height*weight=1;&lt;BR /&gt;
run;</description>
      <pubDate>Tue, 03 Nov 2009 19:13:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Any-symbol-list-for-SAS-graph/m-p/11237#M164</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2009-11-03T19:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: Any symbol list for SAS graph?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Any-symbol-list-for-SAS-graph/m-p/11238#M165</link>
      <description>Hi:&lt;BR /&gt;
  The answer depends on whether you are using the "G" procedures or device-based SAS/GRAPH procedures and are specifying the symbol with the SYMBOL statement:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/graphref/61884/HTML/default/symbolchap.htm#global-symboltable" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/graphref/61884/HTML/default/symbolchap.htm#global-symboltable&lt;/A&gt;&lt;BR /&gt;
and if the symbol you want is not in the above list, then you can use the FONT= option with a specific hex value to specify a font and symbol, as described here&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/graphref/61884/HTML/default/symbolchap.htm#a000725809" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/graphref/61884/HTML/default/symbolchap.htm#a000725809&lt;/A&gt;&lt;BR /&gt;
[pre]&lt;BR /&gt;
symbol font="Albany AMT" value="80"x;   /* hexadecimal code for the Euro symbol */&lt;BR /&gt;
symbol font="Monotype Sorts" value="s";   /* character code for a filled triangle */&lt;BR /&gt;
[/pre]&lt;BR /&gt;
                                                       &lt;BR /&gt;
or whether you're using the "SG" procedures or template-based Statistical Graphics procedures:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/grstatug/62464/HTML/default/p1fiomuidt8j36n1g8tez0dhqv7c.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/grstatug/62464/HTML/default/p1fiomuidt8j36n1g8tez0dhqv7c.htm&lt;/A&gt; &lt;BR /&gt;
&lt;BR /&gt;
In either case, the list of available "named" symbols is in the documentation. &lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Tue, 03 Nov 2009 19:17:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Any-symbol-list-for-SAS-graph/m-p/11238#M165</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-11-03T19:17:43Z</dc:date>
    </item>
    <item>
      <title>Re: Any symbol list for SAS graph?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Any-symbol-list-for-SAS-graph/m-p/11239#M166</link>
      <description>Thanks a lot!&lt;BR /&gt;
&lt;BR /&gt;
This one works!!&lt;BR /&gt;
&lt;BR /&gt;
Ken</description>
      <pubDate>Wed, 04 Nov 2009 05:31:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Any-symbol-list-for-SAS-graph/m-p/11239#M166</guid>
      <dc:creator>Ken_oy</dc:creator>
      <dc:date>2009-11-04T05:31:30Z</dc:date>
    </item>
  </channel>
</rss>

