<?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: Curve label not display in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/562025#M22804</link>
    <description>You need to talk to tech support, this is a bug. Please file a support ticket and let them deal with this. Would love to see the response as well. You can refer them to this link with both Cynthia and my posts it's pretty clear. &lt;BR /&gt;</description>
    <pubDate>Tue, 28 May 2019 17:45:12 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2019-05-28T17:45:12Z</dc:date>
    <item>
      <title>Curve label not display</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561286#M22778</link>
      <description>&lt;P&gt;I want to have label at the end of the curves. however, the label does not display. It used to work but not anymore and I dont know how. Here is my code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;	proc sgplot data = stats;
			series x=t y=cum_r_excess/group=decile curvelabel curvelabelpos=end ;
			xaxis grid VALUES = (-32 TO 32 BY 1);
			yaxis GRID ;
			refline 0/ axis=y ;
		run;&lt;/CODE&gt;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2019 02:46:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561286#M22778</guid>
      <dc:creator>somebody</dc:creator>
      <dc:date>2019-05-24T02:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: Curve label not display</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561291#M22779</link>
      <description>What does the log show? Can you replicate the issue with a data set we can access, like sashelp.stocks. If this is data related, we won't be able to tell otherwise.</description>
      <pubDate>Fri, 24 May 2019 02:47:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561291#M22779</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-05-24T02:47:50Z</dc:date>
    </item>
    <item>
      <title>Re: Curve label not display</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561299#M22780</link>
      <description>&lt;P&gt;Here is what I get when trying with sashelp.stocks:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;&amp;nbsp;proc sgplot data = sashelp.stocks;&lt;BR /&gt;series x=date y=adjclose/group=stock curvelabel curvelabelpos=end ;&lt;BR /&gt;&lt;BR /&gt;yaxis GRID ;&lt;BR /&gt;refline 0/ axis=y ;&lt;BR /&gt;refline 0/ axis=x ;&lt;BR /&gt;run;		&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sashelp_stocks.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/29749iD7AEBB8702E69486/image-size/large?v=v2&amp;amp;px=999" role="button" title="sashelp_stocks.png" alt="sashelp_stocks.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and here is the log:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;NOTE: PROCEDURE SGPLOT used (Total process time):
      real time           0.15 seconds
      cpu time            0.03 seconds

NOTE: The column format DATE7 is replaced by an auto-generated
      format on the axis.
NOTE: There were 699 observations read from the data set
      SASHELP.STOCKS.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 24 May 2019 03:00:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561299#M22780</guid>
      <dc:creator>somebody</dc:creator>
      <dc:date>2019-05-24T03:00:48Z</dc:date>
    </item>
    <item>
      <title>Re: Curve label not display</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561305#M22781</link>
      <description>&lt;P&gt;What version of SAS are you using? I initially thought it wasn't appearing but instead realized it was putting it at the beginning. I set it to Max instead and got what I think you want:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=sashelp.stocks;
    series x=date y=adjclose/group=stock curvelabel curvelabelpos=max;
    yaxis GRID;
    refline 0/ axis=y;
    refline 0/ axis=x;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2019-05-23 at 9.18.45 PM.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/29750i17F57620972DCC07/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2019-05-23 at 9.18.45 PM.png" alt="Screen Shot 2019-05-23 at 9.18.45 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm using 9.4 TS1M5&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2019 03:19:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561305#M22781</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-05-24T03:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: Curve label not display</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561315#M22782</link>
      <description>&lt;P&gt;I am using SAS 9.4 (TS1M5).&lt;/P&gt;&lt;P&gt;I used your code but still could not get the labels. I used to be able to produce what I wanted on the same computer but for some reason, the labels don't appear this time.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2019 04:54:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561315#M22782</guid>
      <dc:creator>somebody</dc:creator>
      <dc:date>2019-05-24T04:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: Curve label not display</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561318#M22783</link>
      <description>&lt;P&gt;Try adding some curvelabelattrs and curvelabelloc.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don’t know why but that seems to change the behaviour.&lt;/P&gt;
&lt;P&gt;I just used the examples from the documentation for the attributes.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/98381"&gt;@somebody&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I am using SAS 9.4 (TS1M5).&lt;/P&gt;
&lt;P&gt;I used your code but still could not get the labels. I used to be able to produce what I wanted on the same computer but for some reason, the labels don't appear this time.&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2019 05:33:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561318#M22783</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-05-24T05:33:34Z</dc:date>
    </item>
    <item>
      <title>Re: Curve label not display</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561392#M22784</link>
      <description>&lt;P&gt;You must using SAS OnDemand for Academic .&lt;/P&gt;
&lt;P&gt;I have the same problem . Don't know why .&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2019 13:53:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561392#M22784</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-05-24T13:53:51Z</dc:date>
    </item>
    <item>
      <title>Re: Curve label not display</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561420#M22786</link>
      <description>Agreed, not working on SAS Academics on Demand. That's gotta be a bug somewhere.</description>
      <pubDate>Fri, 24 May 2019 14:51:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561420#M22786</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-05-24T14:51:00Z</dc:date>
    </item>
    <item>
      <title>Re: Curve label not display</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561426#M22787</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/98381"&gt;@somebody&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I want to have label at the end of the curves. however, the label does not display. It used to work but not anymore and I dont know how. Here is my code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;	proc sgplot data = stats;
			series x=t y=cum_r_excess/group=decile curvelabel curvelabelpos=end ;
			xaxis grid VALUES = (-32 TO 32 BY 1);
			yaxis GRID ;
			refline 0/ axis=y ;
		run;&lt;/CODE&gt;&amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;From the documentation for Curvelabel a possible hint:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;TABLE class="xis-summary"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class="xis-summaryInteraction" rowspan="2"&gt;Interactions&lt;/TD&gt;
&lt;TD class="xis-summaryText"&gt;If you specify &lt;STRONG&gt;VALUES=,&lt;/STRONG&gt; MAX=, or MIN= in an axis statement, the points used to determine the position of the curve label might fall outside the graph area. In this case, the curve label might not be displayed, or its position might not be correct.&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;One work around:&lt;/P&gt;
&lt;P&gt;Add some records with X Y coordinates in the same scale and desired Text , add a TEXT plot&amp;nbsp;to overlay&lt;/P&gt;
&lt;P&gt;Or an annotate data set doing basically the same thing possibly based on the first or last record for each group&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2019 15:03:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561426#M22787</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-05-24T15:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: Curve label not display</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561434#M22789</link>
      <description>Except that exact code in SAS UE works and displays the labels.</description>
      <pubDate>Fri, 24 May 2019 15:18:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561434#M22789</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-05-24T15:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: Curve label not display</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561489#M22793</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Except that exact code in SAS UE works and displays the labels.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Perhaps that comment about not displayed or wrong position is dependent upon version?!?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I run the following which used the default position curvelabelpos, no option&amp;nbsp;set,&amp;nbsp;&lt;STRONG&gt;and&lt;/STRONG&gt; an xaxis statement with Values= then no curvelabel appears running in Display Manager. So there appears to be significant differences in behavior with options.&lt;/P&gt;
&lt;PRE&gt;proc sgplot data=sashelp.stocks;
    series x=date y=adjclose/group=stock curvelabel ;
    xaxis values=('01Jan2005'd to '01Jan2006'd by month);

    yaxis GRID;
    refline 0/ axis=y;
    refline 0/ axis=x;
run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SGPlot1.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/29762iDB7DFB4008DFDC0A/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGPlot1.png" alt="SGPlot1.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2019 17:33:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561489#M22793</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-05-24T17:33:42Z</dc:date>
    </item>
    <item>
      <title>Re: Curve label not display</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561492#M22794</link>
      <description>Both SAS UE and Academics on Demand are M5 aren't they? I suppose SAS UE could be M6 but the exact code gave different results with the exact same specifications and option set. And there are no warnings in the log, so this would definitely fall under unexpected behavior, whether its a feature or bug is unknown &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Fri, 24 May 2019 17:39:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561492#M22794</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-05-24T17:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: Curve label not display</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561580#M22795</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Using CURVELABELLOC and CURVELABELPOS worked for me in Display Manager using 9.4M5:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="curvelabelpos.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/29766i0F5E62367022E50B/image-size/large?v=v2&amp;amp;px=999" role="button" title="curvelabelpos.png" alt="curvelabelpos.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Sat, 25 May 2019 17:33:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561580#M22795</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-05-25T17:33:07Z</dc:date>
    </item>
    <item>
      <title>Re: Curve label not display</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561596#M22796</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2019-05-25 at 4.24.02 PM.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/29767iF1618AD490ED3B8B/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2019-05-25 at 4.24.02 PM.png" alt="Screen Shot 2019-05-25 at 4.24.02 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This doesn't work for me &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SAS Academics on Demand, exact same code as posted, commenting out axis or including it doesn't matter.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This code DOES work in SAS UE.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SAS UE is 9.4 M6 but Academics on Demand is M5&lt;/P&gt;</description>
      <pubDate>Sat, 25 May 2019 22:30:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561596#M22796</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-05-25T22:30:04Z</dc:date>
    </item>
    <item>
      <title>Re: Curve label not display</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561857#M22802</link>
      <description>&lt;P&gt;I used the exact same code on my laptop and it works fine. It does not work (i.e. show the labels) when I used it on my PC at work. Please help &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 May 2019 05:52:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/561857#M22802</guid>
      <dc:creator>somebody</dc:creator>
      <dc:date>2019-05-28T05:52:01Z</dc:date>
    </item>
    <item>
      <title>Re: Curve label not display</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/562025#M22804</link>
      <description>You need to talk to tech support, this is a bug. Please file a support ticket and let them deal with this. Would love to see the response as well. You can refer them to this link with both Cynthia and my posts it's pretty clear. &lt;BR /&gt;</description>
      <pubDate>Tue, 28 May 2019 17:45:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Curve-label-not-display/m-p/562025#M22804</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-05-28T17:45:12Z</dc:date>
    </item>
  </channel>
</rss>

