<?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: SAS GRAPHS in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/SAS-GRAPHS/m-p/437945#M15094</link>
    <description>Thanks Oligolas, thats working but only for axis 75 , how we can do like from 0 to 75</description>
    <pubDate>Fri, 16 Feb 2018 11:57:04 GMT</pubDate>
    <dc:creator>Vahe_Mar</dc:creator>
    <dc:date>2018-02-16T11:57:04Z</dc:date>
    <item>
      <title>SAS GRAPHS</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-GRAPHS/m-p/437467#M15090</link>
      <description>&lt;P&gt;Hi, I need some changes in my template for adding colours before 80% and after 125% and change labels from bottom to up.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc template;&lt;BR /&gt;define statgraph sgdesign;&lt;BR /&gt;dynamic _MEAN _PARLB _PAR1A _HIGHT _LOW;&lt;BR /&gt;begingraph / designwidth=950px designheight=450px backgroundcolor=CXE8E6E8;&lt;BR /&gt;layout lattice / rowdatarange=data columndatarange=data rowgutter=10 columngutter=10;&lt;BR /&gt;layout overlay / wallcolor=CXFFFFFF walldisplay=(OUTLINE FILL)&lt;BR /&gt;xaxisopts=( display=(TICKS TICKVALUES LINE ) griddisplay=on gridattrs=GraphAxisLines(pattern=2 thickness=2 ) linearopts=( tickvaluepriority=TRUE tickvalueformat=BEST6. tickvaluelist=(80.0 100.0 125.0) tickdisplaylist=("80%" "100%" "125%")))&lt;BR /&gt;yaxisopts=( reverse=true display=(TICKS LINE TICKVALUES ) griddisplay=off gridattrs=(color=CX848284 pattern=2 thickness=1 ) discreteopts=( tickvaluefitpolicy=none));&lt;BR /&gt;scatterplot x=_MEAN y=_PARLB / group=_PAR1A xerrorupper=_HIGHT xerrorlower=_LOW name='scatter' grouporder=ascending markerattrs=(weight=bold ) errorbarattrs=(thickness=2 );&lt;BR /&gt;endlayout;&lt;BR /&gt;endlayout;&lt;BR /&gt;endgraph;&lt;BR /&gt;end;&lt;BR /&gt;run&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SAS.JPG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/18605iEE10BB9F5CADE5D8/image-size/large?v=v2&amp;amp;px=999" role="button" title="SAS.JPG" alt="SAS.JPG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/18606iC5475DA95CDBC595/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Feb 2018 09:24:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-GRAPHS/m-p/437467#M15090</guid>
      <dc:creator>Vahe_Mar</dc:creator>
      <dc:date>2018-02-15T09:24:06Z</dc:date>
    </item>
    <item>
      <title>Re: SAS GRAPHS</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-GRAPHS/m-p/437475#M15091</link>
      <description>&lt;P&gt;Search here:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.sas.com/content/graphicallyspeaking/" target="_blank"&gt;http://blogs.sas.com/content/graphicallyspeaking/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Feb 2018 09:48:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-GRAPHS/m-p/437475#M15091</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-02-15T09:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: SAS GRAPHS</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-GRAPHS/m-p/437688#M15092</link>
      <description>&lt;P&gt;You will have to describe what this means: "change labels from bottom to up."&lt;/P&gt;
&lt;P&gt;If you want the 80%, 100% etc displayed at the top of the graph then the scatterplot should&amp;nbsp; have the option: xaxis=x2&lt;/P&gt;</description>
      <pubDate>Thu, 15 Feb 2018 16:39:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-GRAPHS/m-p/437688#M15092</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-02-15T16:39:42Z</dc:date>
    </item>
    <item>
      <title>Re: SAS GRAPHS</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-GRAPHS/m-p/437941#M15093</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;maybe you could add 2 thick reference lines before 80 and after 120 before the scatterplot statement:&lt;/P&gt;&lt;P&gt;referenceline x=75 / lineattrs=(thickness=60 color=blue);&lt;BR /&gt;referenceline x=130 / lineattrs=(thickness=60 color=blue);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you will need to play with the x and the thickness to find the values that match your graphic at best&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Feb 2018 11:46:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-GRAPHS/m-p/437941#M15093</guid>
      <dc:creator>Oligolas</dc:creator>
      <dc:date>2018-02-16T11:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: SAS GRAPHS</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-GRAPHS/m-p/437945#M15094</link>
      <description>Thanks Oligolas, thats working but only for axis 75 , how we can do like from 0 to 75</description>
      <pubDate>Fri, 16 Feb 2018 11:57:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-GRAPHS/m-p/437945#M15094</guid>
      <dc:creator>Vahe_Mar</dc:creator>
      <dc:date>2018-02-16T11:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: SAS GRAPHS</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-GRAPHS/m-p/437951#M15095</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think you can reach this with a blockplot overlaid statement like described in&amp;nbsp;&lt;A href="http://documentation.sas.com/?docsetId=grstatgraph&amp;amp;docsetTarget=n0ifwefyk3jw1fn1rjcdz5jfakiw.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=de" target="_blank"&gt;Example 1: BlockPlot Overlaid with SeriesPlot&lt;/A&gt;&lt;/P&gt;&lt;P&gt;In the example the variable 'release' marks the end of the color strip.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;         blockplot x=date block=release /
           datatransparency=0.3 valuevalign=top
           labelposition=top display=(fill values label)
           extendblockonmissing=true ;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 16 Feb 2018 12:24:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-GRAPHS/m-p/437951#M15095</guid>
      <dc:creator>Oligolas</dc:creator>
      <dc:date>2018-02-16T12:24:42Z</dc:date>
    </item>
  </channel>
</rss>

