<?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: Line width doubling or increasing in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877322#M23853</link>
    <description>&lt;P&gt;This is the start and the end&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods listing close;
options source notes orientation=landscape;
ods escapechar="!" ;
ods &amp;amp;OUT. file="&amp;amp;outp.\&amp;amp;ta..&amp;amp;OUTT" style=&amp;amp;STY. nogtitle nogfootnote;
ods graphics / reset height = 4.5in width = 9.5in border=off; 


**********Above Code****************



ods graphics off;
ods rtf close;
ods listing;

&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 24 May 2023 17:18:31 GMT</pubDate>
    <dc:creator>Manvel</dc:creator>
    <dc:date>2023-05-24T17:18:31Z</dc:date>
    <item>
      <title>Line width doubling or increasing</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877009#M23825</link>
      <description />
      <pubDate>Tue, 23 May 2023 08:35:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877009#M23825</guid>
      <dc:creator>Manvel</dc:creator>
      <dc:date>2023-05-23T08:35:39Z</dc:date>
    </item>
    <item>
      <title>Re: Line width doubling or increasing</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877086#M23828</link>
      <description>&lt;P&gt;And the question is???&lt;/P&gt;</description>
      <pubDate>Tue, 23 May 2023 14:48:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877086#M23828</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-05-23T14:48:54Z</dc:date>
    </item>
    <item>
      <title>Re: Line width doubling or increasing</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877099#M23829</link>
      <description>&lt;P&gt;Is there a way to increase the width for lines and keep their style, I have multiple lines and used "lineattrs = (thickness=2px)" and it works only for first line. Is there another way to increase the line size?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 May 2023 15:37:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877099#M23829</guid>
      <dc:creator>Manvel</dc:creator>
      <dc:date>2023-05-23T15:37:35Z</dc:date>
    </item>
    <item>
      <title>Re: Line width doubling or increasing</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877118#M23830</link>
      <description>&lt;P&gt;Is this a grouped SERIES plot, or multiple SERIES statements?&lt;/P&gt;</description>
      <pubDate>Tue, 23 May 2023 16:52:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877118#M23830</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2023-05-23T16:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: Line width doubling or increasing</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877120#M23831</link>
      <description>It is grouped series plot</description>
      <pubDate>Tue, 23 May 2023 16:55:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877120#M23831</guid>
      <dc:creator>Manvel</dc:creator>
      <dc:date>2023-05-23T16:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: Line width doubling or increasing</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877123#M23832</link>
      <description>&lt;P&gt;Provide a working example. Either share some simple data or use one of the SASHELP datasets to demonstrate what you are doing.&lt;/P&gt;</description>
      <pubDate>Tue, 23 May 2023 16:59:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877123#M23832</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-05-23T16:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: Line width doubling or increasing</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877125#M23833</link>
      <description>&lt;P&gt;Without seeing your code, let me make a few suggestions:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Simply setting the line thickness in LINEATTRS is enough to make all grouped lines the same size. If you are losing the line patterns, remove the PATTERN=solid and set ATTRPRIORITY=NONE on the ODS GRAPHICS statement. My guess it that you are using a color-priority style (such as HTMLBLUE).&lt;/LI&gt;
&lt;LI&gt;If you need the thickness to vary per value in another variable, you can use the THICKRESP=&amp;lt;variable&amp;gt; option on the SERIES plot to vary the thicknesses of you grouped lines.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;
&lt;P&gt;Dan&lt;/P&gt;</description>
      <pubDate>Tue, 23 May 2023 17:05:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877125#M23833</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2023-05-23T17:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: Line width doubling or increasing</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877215#M23842</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=final(where=(paramcd="TEST")) noautolegend ;
    by lbnam paramcd paramtxt lbtest2;    
    ods output sgplot=sg; 
    Title7 justify=left "#BYVAL4";
  series  X=X_ Y=cMean / group = TRT01A markers  groupdisplay=cluster /*overlay*/ clusterwidth=0.15 name="T10" lineattrs=(thickness=2px);
  scatter X=X_ Y=cMean / group = TRT01A yerrorlower=Lower yerrorupper=Upper  groupdisplay=cluster /*overlay */ clusterwidth=0.15 markerattrs=(size=11px) errorbarattrs=(thickness=2px);

  keylegend 'T10' / noborder down=1;

  yaxis  min=&amp;amp;minl max=&amp;amp;maxu valueattrs=(size=10) valueshint label=/*"&amp;amp;ytitle."*/ "Mean Change from Baseline (+/-SE)" labelattrs=(size=10);   

  xaxis min=1 max=2 values=(1 to 2 by 1) valueattrs=(size=10) valuesdisplay=('Baseline' 'Week X') valueshint label="Visit" labelattrs=(size=10);  

run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This is a code example which works in my end and it is getting me this result(picture below), If I will add "pattern=solid" it will remove all line attribute and type. Error bars worked correctly.&lt;/P&gt;
&lt;DIV id="tinyMceEditorManvel_2" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Manvel_3-1684913710173.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/84239iD9E2164C4C8E3693/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Manvel_3-1684913710173.png" alt="Manvel_3-1684913710173.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 May 2023 07:41:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877215#M23842</guid>
      <dc:creator>Manvel</dc:creator>
      <dc:date>2023-05-24T07:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: Line width doubling or increasing</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877249#M23843</link>
      <description>Example provided below</description>
      <pubDate>Wed, 24 May 2023 11:48:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877249#M23843</guid>
      <dc:creator>Manvel</dc:creator>
      <dc:date>2023-05-24T11:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: Line width doubling or increasing</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877284#M23845</link>
      <description>&lt;P&gt;You might consider showing the code &lt;STRONG&gt;with&lt;/STRONG&gt; the "pattern=solid". There a different places that could be used and results would vary.&lt;/P&gt;</description>
      <pubDate>Wed, 24 May 2023 14:47:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877284#M23845</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-05-24T14:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: Line width doubling or increasing</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877298#M23846</link>
      <description>proc sgplot data=final(where=(paramcd="TEST")) noautolegend ;&lt;BR /&gt;    by lbnam paramcd paramtxt lbtest2;    &lt;BR /&gt;    ods output sgplot=sg; &lt;BR /&gt;    Title7 justify=left "#BYVAL4";&lt;BR /&gt;  series  X=X_ Y=cMean / group = TRT01A markers  groupdisplay=cluster /*overlay*/ clusterwidth=0.15 name="T10" lineattrs=(thickness=2px pattern=solid); *there used pattern solid;&lt;BR /&gt;  scatter X=X_ Y=cMean / group = TRT01A yerrorlower=Lower yerrorupper=Upper  groupdisplay=cluster /*overlay */ clusterwidth=0.15 markerattrs=(size=11px) errorbarattrs=(thickness=2px);&lt;BR /&gt;&lt;BR /&gt;  keylegend 'T10' / noborder down=1;&lt;BR /&gt;&lt;BR /&gt;  yaxis  min=&amp;amp;minl max=&amp;amp;maxu valueattrs=(size=10) valueshint label=/*"&amp;amp;ytitle."*/ "Mean Change from Baseline (+/-SE)" labelattrs=(size=10);   &lt;BR /&gt;&lt;BR /&gt;  xaxis min=1 max=2 values=(1 to 2 by 1) valueattrs=(size=10) valuesdisplay=('Baseline' 'Week X') valueshint label="Visit" labelattrs=(size=10);  &lt;BR /&gt;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I tried to put line attributes manually for example half of them solid and other dash and only solid works(that one I tried when I didn’t have “”patterns=solid”</description>
      <pubDate>Wed, 24 May 2023 15:55:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877298#M23846</guid>
      <dc:creator>Manvel</dc:creator>
      <dc:date>2023-05-24T15:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: Line width doubling or increasing</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877300#M23847</link>
      <description>&lt;P&gt;Just to have a data point, please try the code below and tell me if you see the correct thicknesses:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
do g=1 to 5;
   x=0;
   y=0;
   output;
   x=ranuni(123);
   y=ranuni(321);
   output;
end;
run;

ods graphics / attrpriority=none;
proc sgplot data=test;
series x=x y=y / group=g lineattrs=(thickness=2px);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 24 May 2023 16:02:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877300#M23847</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2023-05-24T16:02:58Z</dc:date>
    </item>
    <item>
      <title>Re: Line width doubling or increasing</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877310#M23848</link>
      <description>&lt;P&gt;Yep man it is correct and lines size is changing for all of them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 May 2023 16:26:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877310#M23848</guid>
      <dc:creator>Manvel</dc:creator>
      <dc:date>2023-05-24T16:26:43Z</dc:date>
    </item>
    <item>
      <title>Re: Line width doubling or increasing</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877313#M23850</link>
      <description>&lt;P&gt;Is this PNG or SVG output? What is the output type? HTML? PDF?&lt;/P&gt;</description>
      <pubDate>Wed, 24 May 2023 16:39:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877313#M23850</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2023-05-24T16:39:31Z</dc:date>
    </item>
    <item>
      <title>Re: Line width doubling or increasing</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877316#M23851</link>
      <description>&lt;P&gt;In my end it is RTF and I need to have that and not changing STYLE part&lt;/P&gt;</description>
      <pubDate>Wed, 24 May 2023 17:12:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877316#M23851</guid>
      <dc:creator>Manvel</dc:creator>
      <dc:date>2023-05-24T17:12:39Z</dc:date>
    </item>
    <item>
      <title>Re: Line width doubling or increasing</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877320#M23852</link>
      <description>&lt;P&gt;If you are using ODS RTF, the default output type is EMF. Let's take EMF out of equation. Add this statement before your PROC SGPLOT run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ODS GRAPHICS / outputfmt=png;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me know if that works better.&lt;/P&gt;</description>
      <pubDate>Wed, 24 May 2023 17:18:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877320#M23852</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2023-05-24T17:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: Line width doubling or increasing</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877322#M23853</link>
      <description>&lt;P&gt;This is the start and the end&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods listing close;
options source notes orientation=landscape;
ods escapechar="!" ;
ods &amp;amp;OUT. file="&amp;amp;outp.\&amp;amp;ta..&amp;amp;OUTT" style=&amp;amp;STY. nogtitle nogfootnote;
ods graphics / reset height = 4.5in width = 9.5in border=off; 


**********Above Code****************



ods graphics off;
ods rtf close;
ods listing;

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 24 May 2023 17:18:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877322#M23853</guid>
      <dc:creator>Manvel</dc:creator>
      <dc:date>2023-05-24T17:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: Line width doubling or increasing</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877325#M23854</link>
      <description>&lt;P&gt;Man you are a hero thanks thanks thanks a lot I tried a lot of ways but nothing, you are the best.&lt;/P&gt;</description>
      <pubDate>Wed, 24 May 2023 17:20:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877325#M23854</guid>
      <dc:creator>Manvel</dc:creator>
      <dc:date>2023-05-24T17:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: Line width doubling or increasing</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877326#M23855</link>
      <description>&lt;P&gt;As a matter of practice, you might want to change:&lt;/P&gt;
&lt;P&gt;ods rtf close;&lt;/P&gt;
&lt;P&gt;to be:&lt;/P&gt;
&lt;P&gt;ods _all_ close;&lt;/P&gt;
&lt;P&gt;so that when &amp;amp;OUT. changes, you are guaranteed to close the destination.&lt;/P&gt;</description>
      <pubDate>Wed, 24 May 2023 17:22:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Line-width-doubling-or-increasing/m-p/877326#M23855</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2023-05-24T17:22:06Z</dc:date>
    </item>
  </channel>
</rss>

