<?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: How to remove the label above the boxplots in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/How-to-remove-the-label-above-the-boxplots/m-p/564806#M18280</link>
    <description>&lt;P&gt;&amp;nbsp;I have somehow figured out the way to delete them.&amp;nbsp;Thank you very much for your helpful tips.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 10 Jun 2019 07:10:41 GMT</pubDate>
    <dc:creator>SAS_AMUH</dc:creator>
    <dc:date>2019-06-10T07:10:41Z</dc:date>
    <item>
      <title>How to remove the label above the boxplots</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-remove-the-label-above-the-boxplots/m-p/564406#M18269</link>
      <description>&lt;P&gt;I did the following programming to remove all the title, x- and y-axis labels.&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I would also like to remove the label above the box plots.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please help me what code I should be writing?&lt;/P&gt;&lt;P&gt;Also if there is any name for this type of labelling, please let me know.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also wonder if there is any other way to remove title (I wrote title1 " ").&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class="language-sas"&gt;proc sgplot data=didi noautolegend;
title1 " "; 
block x=type block=type/ filltype=alternate 
         fillattrs=(color=white)altfillattrs=(color=white);
vbox IPtotal / category=type boxwidth=0.5 nooutliers;
scatter  x=type y=IPtotal / jitter transparency=0.6 
         markerattrs=(color=red symbol=CircleFilled);
yaxis offsetmax=0.1;
xaxis display = (NOLABEL NOVALUES);
yaxis display = (NOLABEL NOVALUES);

run;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SGPlot35.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/30090iDA3D99A2D5F8D118/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGPlot35.png" alt="SGPlot35.png" /&gt;&lt;/span&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jun 2019 08:16:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-remove-the-label-above-the-boxplots/m-p/564406#M18269</guid>
      <dc:creator>SAS_AMUH</dc:creator>
      <dc:date>2019-06-07T08:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove the label above the boxplots</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-remove-the-label-above-the-boxplots/m-p/564490#M18272</link>
      <description>&lt;P&gt;Without data it isn't really clear what you currently have.&lt;/P&gt;
&lt;P&gt;Either write code using one of the SAS supplied data sets such as SASHELP.Class or Sashelp.cars or similar or&lt;/P&gt;
&lt;P&gt;Instructions here: &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank" rel="noopener"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712&lt;/A&gt; will show how to turn an existing SAS data set into data step code that can be pasted into a forum code box using the {i} icon or attached as text to show exactly what you have and that we can test code against.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;VBOX does not place any label above anything. I think you are seeing the result of your BLOCK plot. Which may mean that you want the NOVALUES option in your block plot.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BTW, you only want ONE Yaxis or Xaxis statement. Generally if you have two of the same axis statement only the last one is used.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jun 2019 15:13:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-remove-the-label-above-the-boxplots/m-p/564490#M18272</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-06-07T15:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove the label above the boxplots</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-remove-the-label-above-the-boxplots/m-p/564512#M18273</link>
      <description>&lt;P&gt;Use the NOVALUES option on the BLOCK statement to get rid of the block values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;
&lt;P&gt;Dan&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jun 2019 17:06:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-remove-the-label-above-the-boxplots/m-p/564512#M18273</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2019-06-07T17:06:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove the label above the boxplots</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-remove-the-label-above-the-boxplots/m-p/564806#M18280</link>
      <description>&lt;P&gt;&amp;nbsp;I have somehow figured out the way to delete them.&amp;nbsp;Thank you very much for your helpful tips.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2019 07:10:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-remove-the-label-above-the-boxplots/m-p/564806#M18280</guid>
      <dc:creator>SAS_AMUH</dc:creator>
      <dc:date>2019-06-10T07:10:41Z</dc:date>
    </item>
  </channel>
</rss>

