<?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: Increase size of data labels in bar chart in enterprise guide in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Increase-size-of-data-labels-in-bar-chart-in-enterprise-guide/m-p/425947#M27437</link>
    <description>&lt;P&gt;Which version of EG are you running? I am a bit surprised that is is generating Gchart and Gplot code instead of SGPLOT.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In Gplot&amp;nbsp;SYMBOL statements are used to set data labels with the POINTLABEL option and the Height suboption controls text size.&lt;/P&gt;
&lt;P&gt;You would modify a plot statement to look like:&lt;/P&gt;
&lt;P&gt;PLOT GrossLoss * Discovery_Year=1&amp;nbsp; &amp;nbsp;Tolerance * Discovery_Year=2&amp;nbsp; &amp;nbsp;OpRiskCapital * Discovery_Year=3&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;to use Symbol1 for the GrossLoss, Symbol2 for the Tolerance and Symbol3 for the OpRiskCapital plots.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't use EG so I can't point to the menu/submenu you might need.&lt;/P&gt;</description>
    <pubDate>Tue, 09 Jan 2018 00:53:37 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2018-01-09T00:53:37Z</dc:date>
    <item>
      <title>Increase size of data labels in bar chart in enterprise guide</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Increase-size-of-data-labels-in-bar-chart-in-enterprise-guide/m-p/425690#M27418</link>
      <description>&lt;P&gt;Do we have any option in bar chart and line graph to increase font size of data labels if not then how we can increase it with coding. below I mentioned the code of line graph and bar chart. I also attached both the graph.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="5"&gt;&lt;STRONG&gt;LINE GRAPH&amp;nbsp;CODING&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* -------------------------------------------------------------------&lt;BR /&gt;Code generated by SAS Task&lt;/P&gt;&lt;P&gt;Generated on: Friday, January 05, 2018 at 4:51:07 PM&lt;BR /&gt;By task: Line Plot1&lt;/P&gt;&lt;P&gt;Input Data: WORK.QUERY_FOR_LOSS_TREND1_0001&lt;BR /&gt;Server: SASApp&lt;BR /&gt;------------------------------------------------------------------- */&lt;/P&gt;&lt;P&gt;%_eg_conditional_dropds(WORK.SORTTempTableSorted);&lt;BR /&gt;/* -------------------------------------------------------------------&lt;BR /&gt;Sort data set WORK.QUERY_FOR_LOSS_TREND1_0001&lt;BR /&gt;------------------------------------------------------------------- */&lt;/P&gt;&lt;P&gt;PROC SQL;&lt;BR /&gt;CREATE VIEW WORK.SORTTempTableSorted AS&lt;BR /&gt;SELECT T.Discovery_Year, T.GrossLoss, T.Tolerance, T.OpRiskCapital&lt;BR /&gt;FROM WORK.QUERY_FOR_LOSS_TREND1_0001 as T&lt;BR /&gt;ORDER BY T.Discovery_Year;&lt;BR /&gt;QUIT;&lt;BR /&gt;SYMBOL1&lt;BR /&gt;INTERPOL=JOIN&lt;BR /&gt;POINTLABEL&lt;BR /&gt;HEIGHT=10pt&lt;BR /&gt;VALUE=NONE&lt;BR /&gt;LINE=1&lt;BR /&gt;WIDTH=4&lt;/P&gt;&lt;P&gt;CV = _STYLE_&lt;BR /&gt;;&lt;BR /&gt;SYMBOL2&lt;BR /&gt;INTERPOL=JOIN&lt;BR /&gt;POINTLABEL&lt;BR /&gt;HEIGHT=10pt&lt;BR /&gt;VALUE=NONE&lt;BR /&gt;LINE=1&lt;BR /&gt;WIDTH=4&lt;/P&gt;&lt;P&gt;CV = _STYLE_&lt;BR /&gt;;&lt;BR /&gt;SYMBOL3&lt;BR /&gt;INTERPOL=JOIN&lt;BR /&gt;POINTLABEL&lt;BR /&gt;HEIGHT=10pt&lt;BR /&gt;VALUE=NONE&lt;BR /&gt;LINE=1&lt;BR /&gt;WIDTH=4&lt;/P&gt;&lt;P&gt;CV = _STYLE_&lt;BR /&gt;;&lt;BR /&gt;Legend1&lt;BR /&gt;FRAME&lt;BR /&gt;LABEL=(FONT='Microsoft Sans Serif' HEIGHT=12pt JUSTIFY=LEFT )&lt;BR /&gt;;&lt;BR /&gt;Axis1&lt;BR /&gt;STYLE=1&lt;BR /&gt;WIDTH=1&lt;BR /&gt;MINOR=NONE&lt;/P&gt;&lt;P&gt;VALUE=(HEIGHT=12pt )&lt;/P&gt;&lt;P&gt;;&lt;BR /&gt;Axis2&lt;BR /&gt;STYLE=1&lt;BR /&gt;WIDTH=1&lt;BR /&gt;MINOR=NONE&lt;BR /&gt;LABEL=NONE&lt;/P&gt;&lt;P&gt;VALUE=(FONT='/b' HEIGHT=12pt )&lt;/P&gt;&lt;P&gt;;&lt;BR /&gt;TITLE;&lt;BR /&gt;TITLE1 "Op Risk Capital, Tolerance, Losses";&lt;BR /&gt;FOOTNOTE;&lt;BR /&gt;PROC GPLOT DATA = WORK.SORTTempTableSorted&lt;BR /&gt;;&lt;BR /&gt;PLOT GrossLoss * Discovery_Year Tolerance * Discovery_Year OpRiskCapital * Discovery_Year /&lt;BR /&gt;OVERLAY&lt;BR /&gt;GRID&lt;BR /&gt;VAXIS=AXIS1&lt;/P&gt;&lt;P&gt;HAXIS=AXIS2&lt;/P&gt;&lt;P&gt;FRAME LEGEND=LEGEND1&lt;BR /&gt;;&lt;BR /&gt;/* -------------------------------------------------------------------&lt;BR /&gt;End of task code.&lt;BR /&gt;------------------------------------------------------------------- */&lt;BR /&gt;RUN; QUIT;&lt;BR /&gt;%_eg_conditional_dropds(WORK.SORTTempTableSorted);&lt;BR /&gt;TITLE; FOOTNOTE;&lt;BR /&gt;GOPTIONS RESET = SYMBOL;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="5"&gt;&lt;STRONG&gt;BAR GRAPH CODING&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* -------------------------------------------------------------------&lt;BR /&gt;Code generated by SAS Task&lt;/P&gt;&lt;P&gt;Generated on: Friday, January 05, 2018 at 4:46:56 PM&lt;BR /&gt;By task: Bar Chart1&lt;/P&gt;&lt;P&gt;Input Data: WORK.TRNSTRANSPOSEDQUERY_FOR_LOSSTOLE&lt;BR /&gt;Server: SASApp&lt;BR /&gt;------------------------------------------------------------------- */&lt;/P&gt;&lt;P&gt;%_eg_conditional_dropds(WORK.SORTTempTableSorted);&lt;BR /&gt;/* -------------------------------------------------------------------&lt;BR /&gt;Sort data set WORK.TRNSTRANSPOSEDQUERY_FOR_LOSSTOLE&lt;BR /&gt;------------------------------------------------------------------- */&lt;/P&gt;&lt;P&gt;PROC SQL;&lt;BR /&gt;CREATE VIEW WORK.SORTTempTableSorted AS&lt;BR /&gt;SELECT T.Source, T.Loss_Trend1, T.Column1&lt;BR /&gt;FROM WORK.TRNSTRANSPOSEDQUERY_FOR_LOSSTOLE as T&lt;BR /&gt;;&lt;BR /&gt;QUIT;&lt;BR /&gt;Axis1&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;LABEL=NONE&lt;BR /&gt;;&lt;BR /&gt;Axis2&lt;BR /&gt;MINOR=NONE&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;LABEL=NONE&lt;BR /&gt;;&lt;BR /&gt;Axis3&lt;BR /&gt;LABEL=NONE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;;&lt;BR /&gt;TITLE;&lt;BR /&gt;TITLE1 "Actual Losses vs Tolerance";&lt;BR /&gt;FOOTNOTE;&lt;BR /&gt;PROC GCHART DATA=WORK.SORTTempTableSorted&lt;BR /&gt;;&lt;BR /&gt;HBAR3D&lt;BR /&gt;Source&lt;BR /&gt;/&lt;BR /&gt;SUMVAR=Column1&lt;BR /&gt;GROUP=Loss_Trend1&lt;BR /&gt;SHAPE=BLOCK&lt;BR /&gt;FRAME TYPE=SUM&lt;BR /&gt;SUM&lt;BR /&gt;NOLEGEND&lt;BR /&gt;COUTLINE=BLACK&lt;BR /&gt;MAXIS=AXIS1&lt;BR /&gt;RAXIS=AXIS2&lt;BR /&gt;GAXIS=AXIS3&lt;BR /&gt;PATTERNID=MIDPOINT&lt;BR /&gt;;&lt;BR /&gt;/* -------------------------------------------------------------------&lt;BR /&gt;End of task code.&lt;BR /&gt;------------------------------------------------------------------- */&lt;BR /&gt;RUN; QUIT;&lt;BR /&gt;%_eg_conditional_dropds(WORK.SORTTempTableSorted);&lt;BR /&gt;TITLE; FOOTNOTE;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jan 2018 06:28:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Increase-size-of-data-labels-in-bar-chart-in-enterprise-guide/m-p/425690#M27418</guid>
      <dc:creator>rehmanpanjwani</dc:creator>
      <dc:date>2018-01-08T06:28:13Z</dc:date>
    </item>
    <item>
      <title>Re: Increase size of data labels in bar chart in enterprise guide</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Increase-size-of-data-labels-in-bar-chart-in-enterprise-guide/m-p/425947#M27437</link>
      <description>&lt;P&gt;Which version of EG are you running? I am a bit surprised that is is generating Gchart and Gplot code instead of SGPLOT.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In Gplot&amp;nbsp;SYMBOL statements are used to set data labels with the POINTLABEL option and the Height suboption controls text size.&lt;/P&gt;
&lt;P&gt;You would modify a plot statement to look like:&lt;/P&gt;
&lt;P&gt;PLOT GrossLoss * Discovery_Year=1&amp;nbsp; &amp;nbsp;Tolerance * Discovery_Year=2&amp;nbsp; &amp;nbsp;OpRiskCapital * Discovery_Year=3&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;to use Symbol1 for the GrossLoss, Symbol2 for the Tolerance and Symbol3 for the OpRiskCapital plots.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't use EG so I can't point to the menu/submenu you might need.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jan 2018 00:53:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Increase-size-of-data-labels-in-bar-chart-in-enterprise-guide/m-p/425947#M27437</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-01-09T00:53:37Z</dc:date>
    </item>
  </channel>
</rss>

