<?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: How to make rounded corners for graph border? in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-rounded-corners-for-graph-border/m-p/425922#M14701</link>
    <description>&lt;P&gt;Hi Warren,&lt;/P&gt;&lt;P&gt;Thanks for your reply, but this method rounded the corners of the inside border (I do not need any border for it), I would like to round the corners for the outside border (the yellow highlighted line in the pic).&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 08 Jan 2018 21:19:51 GMT</pubDate>
    <dc:creator>hanyi0221</dc:creator>
    <dc:date>2018-01-08T21:19:51Z</dc:date>
    <item>
      <title>How to make rounded corners for graph border?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-rounded-corners-for-graph-border/m-p/425903#M14697</link>
      <description>&lt;P&gt;I need to create a dot plot with border and the border must have rounded corners instead of regular corners. Could someone please help me with it? Thanks.&lt;/P&gt;&lt;P&gt;Here is my code:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;PROC SGPLOT DATA = temp1 dattrmap=attrmap border;&lt;/P&gt;&lt;P&gt;Scatter Y=NAME X = MY1R/markerAttrs=(COLOR=purple size=6MM symbol=CIRCLEFILLED) datalabel=MY1R DATALABELATTRS=(size=9pt weight=bold COLOR=White) DATALABELPOS=CENTER transparency=0.1;&lt;/P&gt;&lt;P&gt;Scatter Y=NAME X = MY2R/markerAttrs=(COLOR=purple size=6MM symbol=CIRCLEFILLED) datalabel=MY2R DATALABELATTRS=(size=9pt weight=bold COLOR=White) DATALABELPOS=CENTER transparency=0.1;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;XAXIS DISPLAY=(NOTICKS) label=' ';&lt;BR /&gt;YAXIS DISPLAY=(NOTICKS noline) LABEL = ' ' labelattrs=(color=White) valueattrs=(size=12pt Family=Arial color=black) GRID gridattrs=(color=WhiteSmoke) MINORGRIDATTRS=(color=green pattern=longdash thickness=2);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jan 2018 20:20:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-rounded-corners-for-graph-border/m-p/425903#M14697</guid>
      <dc:creator>hanyi0221</dc:creator>
      <dc:date>2018-01-08T20:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to make rounded corners for graph border?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-rounded-corners-for-graph-border/m-p/425911#M14699</link>
      <description>&lt;P&gt;What comes to mind is suppressing the border and redrawing it by using SG annotation.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data anno;
  drawspace = 'WallPercent';
  function  = 'Rectangle';
  cornerradius=0.1;
  linestyleelement='GraphAxisLines';
  retain x1 y1 50  height width 100 heightunit widthunit 'Percent';
run;

ods html body='b.html';
proc sgplot data=sashelp.class sganno=anno noborder;
   reg y=weight x=height / group=sex;
   xaxis display=(noline);
   yaxis display=(noline);
run;
ods html close;

proc print; run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Jan 2018 20:58:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-rounded-corners-for-graph-border/m-p/425911#M14699</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2018-01-08T20:58:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to make rounded corners for graph border?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-rounded-corners-for-graph-border/m-p/425922#M14701</link>
      <description>&lt;P&gt;Hi Warren,&lt;/P&gt;&lt;P&gt;Thanks for your reply, but this method rounded the corners of the inside border (I do not need any border for it), I would like to round the corners for the outside border (the yellow highlighted line in the pic).&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jan 2018 21:19:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-rounded-corners-for-graph-border/m-p/425922#M14701</guid>
      <dc:creator>hanyi0221</dc:creator>
      <dc:date>2018-01-08T21:19:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to make rounded corners for graph border?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-rounded-corners-for-graph-border/m-p/425924#M14702</link>
      <description>&lt;P&gt;Oh.&amp;nbsp; That makes more sense.&amp;nbsp; It is almost the same.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data anno;
  drawspace = 'GraphPercent';
  function  = 'Rectangle';
  cornerradius=0.1;
  linestyleelement='GraphAxisLines';
  retain x1 y1 50  height width 100 heightunit widthunit 'Percent';
run;

ods graphics on / noborder;
proc sgplot data=sashelp.class sganno=anno;
   reg y=weight x=height / group=sex;
run;

proc print; run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Jan 2018 21:23:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-rounded-corners-for-graph-border/m-p/425924#M14702</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2018-01-08T21:23:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to make rounded corners for graph border?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-rounded-corners-for-graph-border/m-p/426114#M14705</link>
      <description>&lt;P&gt;Thank you! It works!&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jan 2018 14:37:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-rounded-corners-for-graph-border/m-p/426114#M14705</guid>
      <dc:creator>hanyi0221</dc:creator>
      <dc:date>2018-01-09T14:37:00Z</dc:date>
    </item>
  </channel>
</rss>

