<?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 Remove labels from x and y axis in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Remove-labels-from-x-and-y-axis/m-p/825895#M23023</link>
    <description>&lt;P&gt;The code below:&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc sgpanel data=clinis_symp;&lt;BR /&gt;panelBy group/novarname;&lt;BR /&gt;vbarparm category=symp response=pct / groupdisplay=cluster group=symp datalabel=data_label &lt;BR /&gt;	datalabelattrs=(size=2pt color=black);&lt;BR /&gt;    keylegend / position=bottom title="Clinical Symptoms" noborder;&lt;BR /&gt;      &lt;BR /&gt;run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Created the following graph:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="luvscandy27_0-1659007989705.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/73835iCF3D2DC27FAE847C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="luvscandy27_0-1659007989705.png" alt="luvscandy27_0-1659007989705.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Now, I'm having trouble figuring out how to remove items from the graph. I&amp;nbsp;&lt;/P&gt;
&lt;P&gt;would like to remove symp and the symptom names from under the bars so&amp;nbsp;&lt;/P&gt;
&lt;P&gt;that I only have the legend, remove the pct and, if possible make it so my data labels do not&amp;nbsp;&lt;/P&gt;
&lt;P&gt;cross over the other bars. Any assistance would be great.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 28 Jul 2022 11:38:21 GMT</pubDate>
    <dc:creator>luvscandy27</dc:creator>
    <dc:date>2022-07-28T11:38:21Z</dc:date>
    <item>
      <title>Remove labels from x and y axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Remove-labels-from-x-and-y-axis/m-p/825895#M23023</link>
      <description>&lt;P&gt;The code below:&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc sgpanel data=clinis_symp;&lt;BR /&gt;panelBy group/novarname;&lt;BR /&gt;vbarparm category=symp response=pct / groupdisplay=cluster group=symp datalabel=data_label &lt;BR /&gt;	datalabelattrs=(size=2pt color=black);&lt;BR /&gt;    keylegend / position=bottom title="Clinical Symptoms" noborder;&lt;BR /&gt;      &lt;BR /&gt;run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Created the following graph:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="luvscandy27_0-1659007989705.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/73835iCF3D2DC27FAE847C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="luvscandy27_0-1659007989705.png" alt="luvscandy27_0-1659007989705.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Now, I'm having trouble figuring out how to remove items from the graph. I&amp;nbsp;&lt;/P&gt;
&lt;P&gt;would like to remove symp and the symptom names from under the bars so&amp;nbsp;&lt;/P&gt;
&lt;P&gt;that I only have the legend, remove the pct and, if possible make it so my data labels do not&amp;nbsp;&lt;/P&gt;
&lt;P&gt;cross over the other bars. Any assistance would be great.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jul 2022 11:38:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Remove-labels-from-x-and-y-axis/m-p/825895#M23023</guid>
      <dc:creator>luvscandy27</dc:creator>
      <dc:date>2022-07-28T11:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: Remove labels from x and y axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Remove-labels-from-x-and-y-axis/m-p/825899#M23024</link>
      <description>&lt;P&gt;Good day&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kindly try incorporate the below into your PROC SGPANEL script. I created some dummy data for the purpose of demonstration.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;/*Dummy data*/
data Q01_1;
infile datalines;
input group $ symp $ pct;
datalines;
A PainA 504505
B PainB 454505
C PainC 554505
D PainC 604505
E PainD 404505
F PainA 434505
;
run;

/*Chart*/
ods graphics on / width=10in height=8in;

proc sgpanel data=Q01_1;
panelBy group/novarname;
vbarparm category=symp response=pct /
groupdisplay=cluster group=symp
datalabel datalabelattrs=(size=8) datalabelfitpolicy=rotate;
colaxis display=none;
rowaxis display=(nolabel);
keylegend / position=bottom title="Clinical Symptoms" noborder;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 28 Jul 2022 12:09:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Remove-labels-from-x-and-y-axis/m-p/825899#M23024</guid>
      <dc:creator>Adriaan_Gouws</dc:creator>
      <dc:date>2022-07-28T12:09:28Z</dc:date>
    </item>
  </channel>
</rss>

