<?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: GTL changing label of tickvalues in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/GTL-changing-label-of-tickvalues/m-p/234311#M14652</link>
    <description>&lt;P&gt;The way we could change the label of the block plot is to change the variabe values in the atrisk&amp;amp;i, i believe at the moment the atrisk&amp;amp;i is resolving to "3: AML-Low Risk", "2: AML-High Risk" please change those labels to "AML-Low Risk", "AML-High Risk"...... and may be you could see the difference.&lt;/P&gt;</description>
    <pubDate>Thu, 12 Nov 2015 01:15:23 GMT</pubDate>
    <dc:creator>Jagadishkatam</dc:creator>
    <dc:date>2015-11-12T01:15:23Z</dc:date>
    <item>
      <title>GTL changing label of tickvalues</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/GTL-changing-label-of-tickvalues/m-p/234165#M14641</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;i want to change the labels of the tickvalues, and i couldn't find a solution how to do that. I think somehow in the following part i need to change something to change the labels.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;layout overlay / xaxisopts=(display=none) walldisplay=none yaxisopts=(display=(tickvalues) tickvalueattrs=(size=8)) ;
                              scatterplot x=tatrisk y=stratum / group=stratum  markercharacter=atrisk markercharacterattrs=(size=8);
                         endlayout;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The Result i get in my graph is following:&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/800i53B3A0F958E17176/image-size/original?v=mpbl-1&amp;amp;px=-1" alt="SGRender20.png" title="SGRender20.png" border="0" height="596" width="801" /&gt;&lt;/P&gt;&lt;P&gt;As you can see in the Risktable, the Labels are "3: AML-Low Risk", "2: AML-High Risk", ... i want to change them in "AML-Low Risk", "AML-High-Risk" and so on....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When i put the same risk table with a blockblot statement inside the graph, i can just make this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;blockplot x=tatrisk&amp;amp;i.  block=AtRisk&amp;amp;i.  /  display=(values label) valuehalign=start valueattrs=Graphdata&amp;amp;i. (size=8) labelattrs=(size=8);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;with &lt;EM&gt;display=(values &lt;STRONG&gt;label&lt;/STRONG&gt;) &lt;/EM&gt;i get the desired result (the labes i changed before...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But how can i solve this problem with the "overlay solution"???&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe you can help me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tahanks in advance!&lt;/P&gt;</description>
      <pubDate>Wed, 11 Nov 2015 10:11:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/GTL-changing-label-of-tickvalues/m-p/234165#M14641</guid>
      <dc:creator>FelixS</dc:creator>
      <dc:date>2015-11-11T10:11:43Z</dc:date>
    </item>
    <item>
      <title>Re: GTL changing label of tickvalues</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/GTL-changing-label-of-tickvalues/m-p/234311#M14652</link>
      <description>&lt;P&gt;The way we could change the label of the block plot is to change the variabe values in the atrisk&amp;amp;i, i believe at the moment the atrisk&amp;amp;i is resolving to "3: AML-Low Risk", "2: AML-High Risk" please change those labels to "AML-Low Risk", "AML-High Risk"...... and may be you could see the difference.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Nov 2015 01:15:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/GTL-changing-label-of-tickvalues/m-p/234311#M14652</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2015-11-12T01:15:23Z</dc:date>
    </item>
    <item>
      <title>Re: GTL changing label of tickvalues</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/GTL-changing-label-of-tickvalues/m-p/234312#M14653</link>
      <description>&lt;P&gt;Sorry i doubt if the above solution will work, if not could you please try the below one create a new variable related to stratum. at the momnet i believe the variable stratum has the values as "3: AML-Low Risk", "2: AML-High Risk"...... so create a new variable related to stratum but has values as "AML-Low Risk", "AML-High Risk"...... then use the class=new variable on the BlockPlot statement. This will disply the label as per the values that are present in the newvariable.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;blockplot x=tatrisk&amp;amp;i.  block=AtRisk&amp;amp;i.  /  display=(values label) valuehalign=start valueattrs=Graphdata&amp;amp;i. (size=8) labelattrs=(size=8)
class=newvariable;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Nov 2015 01:25:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/GTL-changing-label-of-tickvalues/m-p/234312#M14653</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2015-11-12T01:25:03Z</dc:date>
    </item>
    <item>
      <title>Re: GTL changing label of tickvalues</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/GTL-changing-label-of-tickvalues/m-p/234338#M14655</link>
      <description>&lt;P&gt;&lt;SPAN class="UserName lia-user-name lia-user-rank-Super-Contributor"&gt;&lt;SPAN class="login-bold"&gt;That really was the easiest way to solve the problem. Maybe this solution could costs some runtime when handling very big datasets, but for my case it's brilliant!&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="UserName lia-user-name lia-user-rank-Super-Contributor"&gt;&lt;SPAN class="login-bold"&gt;Thank you very much!&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Nov 2015 08:10:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/GTL-changing-label-of-tickvalues/m-p/234338#M14655</guid>
      <dc:creator>FelixS</dc:creator>
      <dc:date>2015-11-12T08:10:30Z</dc:date>
    </item>
  </channel>
</rss>

