<?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: Drawing arrow as annotation on the proc splot in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916246#M24345</link>
    <description>&lt;P&gt;Oh noo...&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;, series connects all dots together, and I don't want that. This is what I want to have:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Esterina_0-1707971082268.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93771i21E73FC4B03D83B6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Esterina_0-1707971082268.png" alt="Esterina_0-1707971082268.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 15 Feb 2024 04:24:52 GMT</pubDate>
    <dc:creator>Esterina</dc:creator>
    <dc:date>2024-02-15T04:24:52Z</dc:date>
    <item>
      <title>Drawing arrow as annotation on the proc splot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/915992#M24332</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have use proc sgplot scatter to create a graph, but I need a line with arrow to point the dots. Here is the example:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Esterina_0-1707887487667.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93678iB82AB71000B1A122/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Esterina_0-1707887487667.png" alt="Esterina_0-1707887487667.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I have used function = 'arrow', but I need to make the arrow smaller, which is not possible since I have used the smallest size = 1 and line = 1 to create this arrow. Is there another way to create arrow, since I need it to be smaller?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;function='arrow';x1space="datavalue";y1space="datavalue";x2space="datavalue";y2space="datavalue";desc='Arrow';&lt;BR /&gt;x1=x_y1;y1=y_y1;&lt;BR /&gt;x2=x_y2;y2=y_y2;&lt;/P&gt;&lt;P&gt;line=0.3; size=0.3;&lt;BR /&gt;direction='in';linecolor='CXC00000';linepattern='34';linethickness=&amp;amp;t_linethickness.;shape='filled';scale=0.001;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 14 Feb 2024 05:14:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/915992#M24332</guid>
      <dc:creator>Esterina</dc:creator>
      <dc:date>2024-02-14T05:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing arrow as annotation on the proc splot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916003#M24334</link>
      <description>&lt;P&gt;You could try VECTOR statement instead.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data x;
input x y x1 y1;
cards;
0 0 1 0
;
proc sgplot data=x;
vector x=x1 y=y1/xorigin=x yorigin=y ARROWHEADSHAPE=filled LINEATTRS=(color=darkred pattern=dash ) ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1707894035259.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93683i646EBB78412A3A6E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1707894035259.png" alt="Ksharp_0-1707894035259.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Feb 2024 07:00:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916003#M24334</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-02-14T07:00:57Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing arrow as annotation on the proc splot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916110#M24335</link>
      <description>&lt;P&gt;Thank you Ksharp! Is there any condition that I can add? because I would like to have a solid line for certain data label, and dash for others. And this can change depending on situation.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Feb 2024 17:16:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916110#M24335</guid>
      <dc:creator>Esterina</dc:creator>
      <dc:date>2024-02-14T17:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing arrow as annotation on the proc splot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916112#M24336</link>
      <description>&lt;P&gt;In the code provided by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;, add additional VECTOR commands (with different data, different colors and different line patterns).&lt;/P&gt;</description>
      <pubDate>Wed, 14 Feb 2024 17:19:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916112#M24336</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-02-14T17:19:58Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing arrow as annotation on the proc splot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916117#M24337</link>
      <description>&lt;P&gt;VECTOR plots can be grouped via the GROUP option. Set your data label variable on the GROUP option and you should get the attribute changes on the vectors. If you want only the line pattern to change, I would set ATTRPRIORITY=COLOR on the ODS GRAPHICS statements to ensure that the line pattern changes faster than the color. If you want to control which data label gets a particular line pattern, you can use a discrete attributes map to make that assignment.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Feb 2024 17:25:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916117#M24337</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2024-02-14T17:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing arrow as annotation on the proc splot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916122#M24338</link>
      <description>&lt;P&gt;Thank you &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp;, &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15130"&gt;@DanH_sas&lt;/a&gt;&amp;nbsp;! I'm pushing the limit here, can I make the size of the arrowhead smaller? It is because I have the graph on a whole page of the powerpoint, and it looks a bit too big. Is this possible?&lt;/P&gt;</description>
      <pubDate>Wed, 14 Feb 2024 17:44:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916122#M24338</guid>
      <dc:creator>Esterina</dc:creator>
      <dc:date>2024-02-14T17:44:25Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing arrow as annotation on the proc splot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916227#M24339</link>
      <description>&lt;P&gt;You could use SCATTER or TEXT to mock the arrowheader and change its size or color.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data x;
input x y x1 y1    group  x2 y2 x3 y3;
cards;
0 0 1 0  1  1 0 . .
0.5 -1 0.5 1  2 . . 0.5 1
;
ods graphics/attrpriority=none;
proc sgplot data=x;
styleattrs datacolors=(red blue) datalinepatterns=(dash solid);
vector x=x1 y=y1/group=group xorigin=x yorigin=y noarrowheads ;
scatter x=x2 y=y2/markerattrs=graphdata1(symbol=trianglerightfilled size=8 );
scatter x=x3 y=y3/markerattrs=graphdata2(symbol=trianglefilled size=20 );
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1707966815290.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93763i7AD70A00B12AB426/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1707966815290.png" alt="Ksharp_0-1707966815290.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Feb 2024 03:13:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916227#M24339</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-02-15T03:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing arrow as annotation on the proc splot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916229#M24340</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data x;
input x y x1 y1    group  x2 y2 ;
cards;
0 0 1 0  1  1 0 . .
0.5 -1 0.5 1  2  0.5 1 ..
;
ods graphics/attrpriority=none;
proc sgplot data=x;
styleattrs datacolors=(red blue) datalinepatterns=(dash solid) datasymbols=(trianglerightfilled trianglefilled );
vector x=x1 y=y1/group=group xorigin=x yorigin=y noarrowheads ;
scatter x=x2 y=y2/group=group markerattrs=( size=6 );
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1707967105987.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93764iA35EF62633EA82E3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1707967105987.png" alt="Ksharp_0-1707967105987.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Feb 2024 03:18:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916229#M24340</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-02-15T03:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing arrow as annotation on the proc splot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916234#M24341</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;! Unfortunately, I need the arrow to follow the direction of the lines, so it is not always horizontal or vertical.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Esterina_0-1707968265556.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93767i7FEC7914977015C6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Esterina_0-1707968265556.png" alt="Esterina_0-1707968265556.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Feb 2024 03:38:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916234#M24341</guid>
      <dc:creator>Esterina</dc:creator>
      <dc:date>2024-02-15T03:38:07Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing arrow as annotation on the proc splot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916237#M24342</link>
      <description>&lt;P&gt;Just FYI...SERIES plot also supports the arrowhead option.&amp;nbsp; Different data structure.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Feb 2024 03:56:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916237#M24342</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2024-02-15T03:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing arrow as annotation on the proc splot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916239#M24343</link>
      <description>&lt;P&gt;OK. Try SCATTER statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data x;
input x y     group  m;
cards;
0 0   1  1
1 0   1 1
0.5 -1  2  2
0.5 1   2  2
0.5 0.5  3  .1
1 1   3  .1
;
ods graphics/attrpriority=none;
proc sgplot data=x;
styleattrs datacolors=(red blue) datalinepatterns=(dash solid) ;
series x=x y=y/group=group arrowheadpos=end ARROWHEADSHAPE=filled ARROWHEADSCALE=0.1 thickresp=m;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1707969458601.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93769i335C6F7092B515F5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1707969458601.png" alt="Ksharp_0-1707969458601.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Feb 2024 03:57:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916239#M24343</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-02-15T03:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing arrow as annotation on the proc splot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916243#M24344</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13856"&gt;@Jay54&lt;/a&gt;&amp;nbsp;, &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;! Oh..&amp;nbsp; &amp;nbsp;what is m? I never use series before, I'll take a look how to change my data structure for this. Currently because i have x1, y1, x2, y2, etc.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Feb 2024 04:15:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916243#M24344</guid>
      <dc:creator>Esterina</dc:creator>
      <dc:date>2024-02-15T04:15:18Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing arrow as annotation on the proc splot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916246#M24345</link>
      <description>&lt;P&gt;Oh noo...&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;, series connects all dots together, and I don't want that. This is what I want to have:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Esterina_0-1707971082268.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93771i21E73FC4B03D83B6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Esterina_0-1707971082268.png" alt="Esterina_0-1707971082268.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Feb 2024 04:24:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916246#M24345</guid>
      <dc:creator>Esterina</dc:creator>
      <dc:date>2024-02-15T04:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing arrow as annotation on the proc splot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916247#M24346</link>
      <description>&lt;P&gt;THICKRESP changes the thickness of the line based on a response variable. If you care only about the size of the arrowhead, then you probably will not require that option.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Feb 2024 04:27:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916247#M24346</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2024-02-15T04:27:37Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing arrow as annotation on the proc splot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916250#M24347</link>
      <description>&lt;P&gt;You can use the GROUP option on the SERIES to group your series points based on the label information you showed (Sherly, Robert, etc.). For the SERIES plot, your data will use an X, Y, and GROUP column. There will be 5 observations for the group "Sherly", and two observation for each of the other groups. Do you want each of the line to have the same properties, or do you want them to be different per group?&lt;/P&gt;</description>
      <pubDate>Thu, 15 Feb 2024 04:48:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916250#M24347</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2024-02-15T04:48:55Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing arrow as annotation on the proc splot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916253#M24348</link>
      <description>&lt;P&gt;OK. You also could use TEXT to control ARROWHEADER size .&lt;/P&gt;
&lt;P&gt;NOTE: you have to use UNICODE SAS to run code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data x;
input x y x0 y0    group   x1 y1 r;
triangle=unicode('\u25B2');
cards;
0 0  1  0   1  1 0 -90
0.5 -1 0.5 1   2  0.5 1 0
0.5 0.5  1 1   3  1 1 45
;
ods graphics/attrpriority=none;
proc sgplot data=x;
styleattrs  datalinepatterns=(dash solid) ;
vector x=x y=y/group=group xorigin=x0 yorigin=y0 noarrowheads;
text x=x1 y=y1 text=triangle/group=group strip contributeoffsets=none rotate=r textattrs=(size=4);  /*&amp;lt;--Change this*/
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1708046500279.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93814i8803838B2458FE13/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1708046500279.png" alt="Ksharp_0-1708046500279.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>Fri, 16 Feb 2024 01:22:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916253#M24348</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-02-16T01:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing arrow as annotation on the proc splot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916320#M24351</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15130"&gt;@DanH_sas&lt;/a&gt;,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp; ! I tried to do that but I don't know why it is big:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Esterina_0-1708012530349.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93786iBD42FF16EC4B38F9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Esterina_0-1708012530349.png" alt="Esterina_0-1708012530349.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Here is my code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sgplot data=prep_graph_&amp;amp;t_i._graph sganno=anno noautolegend noopaque nowall noborder pad=&amp;amp;t_pad.;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; styleattrs datacolors=('CXC00000') datalinepatterns=(dot solid);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; series x=x_value y=y_value/&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; datalabel=t_label_f &lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; datalabelattrs=(size=&amp;amp;t_text_size_pt.pt family="&amp;amp;global_font.")&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; markerattrs=(symbol=squarefilled size=&amp;amp;t_marker_size.px)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; group=t_label arrowheadpos=end ARROWHEADSHAPE=filled ARROWHEADSCALE=0.1 thickresp=m;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Feb 2024 16:00:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916320#M24351</guid>
      <dc:creator>Esterina</dc:creator>
      <dc:date>2024-02-15T16:00:07Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing arrow as annotation on the proc splot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916334#M24352</link>
      <description>&lt;P&gt;On the SERIES plot, set LINEATTRS=(thickness=1) and see what you get.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Feb 2024 17:13:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916334#M24352</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2024-02-15T17:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing arrow as annotation on the proc splot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916336#M24354</link>
      <description>&lt;P&gt;Oh, remove the THICKRESP option as well, because that will make the line thickness vary based on the value of "m".&lt;/P&gt;</description>
      <pubDate>Thu, 15 Feb 2024 17:14:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916336#M24354</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2024-02-15T17:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing arrow as annotation on the proc splot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916340#M24355</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15130"&gt;@DanH_sas&lt;/a&gt;&amp;nbsp;! It works, the line is thin now, but then how to control the dot / solid line and also the color? I just want all the same color, I have specified it but seems not working?&amp;nbsp;styleattrs datacolors=('CXC00000') datalinepatterns=(dot solid);&lt;/P&gt;</description>
      <pubDate>Thu, 15 Feb 2024 18:17:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Drawing-arrow-as-annotation-on-the-proc-splot/m-p/916340#M24355</guid>
      <dc:creator>Esterina</dc:creator>
      <dc:date>2024-02-15T18:17:39Z</dc:date>
    </item>
  </channel>
</rss>

