<?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: Can't see the legend description in the graph in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Can-t-see-the-legend-description-in-the-graph/m-p/434698#M15022</link>
    <description>&lt;P&gt;This message may explain part of why you can't see the legend:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#ff0000"&gt;WARNING: Legend statement 5 could not be found. The default legend description will be used.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#ff0000"&gt;NOTE: Foreground color WHITE same as background. Part of your graph might not be visible.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#ff0000"&gt;85 QUIT;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;Your code defines a legend1 but you used legend5 in the code.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;A similar warning about using the incorrect image device is another potential troublemaker&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 06 Feb 2018 21:25:12 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2018-02-06T21:25:12Z</dc:date>
    <item>
      <title>Can't see the legend description in the graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Can-t-see-the-legend-description-in-the-graph/m-p/434686#M15019</link>
      <description>&lt;P&gt;Hi i can't not see the description for my legend all i see is the assign number can some one help me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here is the code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* -------------------------------------------------------------------&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Code generated by SAS Task&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Generated on: Thursday, May 4, 2017 at 1:08:28 PM&lt;BR /&gt;&amp;nbsp;&amp;nbsp; By task: Map Chart&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Map Data: SASApp:MAPSGFK.US_COUNTIES&amp;nbsp;&amp;nbsp; Response Data: SASApp:WORK.ADDCOUNTYID&amp;nbsp;&amp;nbsp; Server: SASApp&lt;BR /&gt;&amp;nbsp;&amp;nbsp; ------------------------------------------------------------------- */&lt;/P&gt;&lt;P&gt;%_eg_conditional_dropds(WORK.MAPCHARTMAPPREP);&lt;BR /&gt;PROC SQL;&lt;BR /&gt;&amp;nbsp;CREATE VIEW WORK.MAPCHARTMAPPREP AS&lt;BR /&gt;&amp;nbsp;&amp;nbsp;SELECT *&lt;BR /&gt;&amp;nbsp;&amp;nbsp;FROM MAPSGFK.US_COUNTIES&lt;BR /&gt;&amp;nbsp;&amp;nbsp;WHERE STATECODE = 'NC'&lt;BR /&gt;&amp;nbsp;&amp;nbsp;;&lt;BR /&gt;QUIT;&lt;/P&gt;&lt;P&gt;%_eg_conditional_dropds(WORK.MAPCHARTRESPONSEPREP);&lt;BR /&gt;PROC SQL;&lt;BR /&gt;&amp;nbsp;CREATE VIEW WORK.MAPCHARTRESPONSEPREP AS&lt;BR /&gt;&amp;nbsp;&amp;nbsp;SELECT *&lt;BR /&gt;&amp;nbsp;&amp;nbsp;FROM WORK.deviations_by_county&lt;BR /&gt;&amp;nbsp;&amp;nbsp;;&lt;BR /&gt;QUIT;&lt;/P&gt;&lt;P&gt;GOPTIONS RESET=ALL DEVICE=html5;&amp;nbsp; /* Modified by Ahsan */&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;PATTERN1 VALUE=SOLID COLOR=CX99CC00;&lt;BR /&gt;PATTERN2 VALUE=SOLID COLOR=WHITE;&lt;BR /&gt;PATTERN3 VALUE=SOLID COLOR=YELLOW;&lt;BR /&gt;PATTERN4 VALUE=SOLID COLOR=CXFF6600;&lt;BR /&gt;PATTERN5 VALUE=SOLID COLOR=RED;&lt;/P&gt;&lt;P&gt;LEGEND1&lt;BR /&gt;&amp;nbsp;DOWN=5&lt;BR /&gt;&amp;nbsp;FRAME&lt;BR /&gt;&amp;nbsp;LABEL=( FONT='Times New Roman' HEIGHT=14pt JUSTIFY=LEFT&amp;nbsp;&amp;nbsp; "Light green counties have unusually LOW per enrollee spending. "&lt;BR /&gt;&amp;nbsp;&amp;nbsp; FONT='Times New Roman' HEIGHT=14pt JUSTIFY=LEFT&amp;nbsp;&amp;nbsp; "White counties have spending per enrollee that is within plus or minus one standard deviation from the mean.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "&lt;BR /&gt;&amp;nbsp;&amp;nbsp; FONT='Times New Roman' HEIGHT=14pt JUSTIFY=LEFT&amp;nbsp;&amp;nbsp; "Yellow, orange, and red counties have unusually HIGH per enrollee spending.")&lt;BR /&gt;&amp;nbsp;;&lt;/P&gt;&lt;P&gt;TITLE;FOOTNOTE;&lt;/P&gt;&lt;P&gt;TITLE1 "NEMT Per Medicaid Enrollee Spend by County";&lt;BR /&gt;TITLE2 "Standard Deviations Above or Below Average";&lt;/P&gt;&lt;P&gt;FOOTNOTE1 "";&lt;/P&gt;&lt;P&gt;ods _ALL_ close;&amp;nbsp; /* Modified by SAS */&lt;BR /&gt;ods html5 path='/sas/RA/nc_dhhs/OIA/ContinuousAudit/ContinuousAuditShared/CommonResources/ExampleMapProject' (url=none)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; file='test.htm' (title="NEMT spending by county") style=htmlblue&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; options(bitmap_mode='inline');&amp;nbsp;&amp;nbsp;&amp;nbsp; /* Modified by SAS */&lt;/P&gt;&lt;P&gt;PROC GMAP GOUT=MAPCHART DATA=WORK.MAPCHARTRESPONSEPREP MAP=WORK.MAPCHARTMAPPREP ALL;&lt;BR /&gt;&amp;nbsp;ID STATE COUNTY;&lt;BR /&gt;&amp;nbsp;choro Deviations /&lt;BR /&gt;&amp;nbsp;&amp;nbsp;WOUTLINE=1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;CDEFAULT=BLACK&lt;BR /&gt;&amp;nbsp;&amp;nbsp;DISCRETE&lt;BR /&gt;&amp;nbsp;&amp;nbsp;LEGEND=LEGEND5 html=tooltip&lt;BR /&gt;&amp;nbsp;&amp;nbsp;;&lt;BR /&gt;RUN;&lt;BR /&gt;QUIT;&lt;/P&gt;&lt;P&gt;TITLE;FOOTNOTE;&lt;/P&gt;&lt;P&gt;GOPTIONS RESET=LEGEND5;&lt;/P&gt;&lt;P&gt;GOPTIONS RESET=PATTERN;&lt;/P&gt;&lt;P&gt;GOPTIONS CBACK=;&lt;/P&gt;&lt;P&gt;ODS _ALL_ CLOSE;&lt;/P&gt;&lt;P&gt;%_eg_conditional_dropds(WORK.MAPCHARTRESPONSEPREP);&lt;BR /&gt;%_eg_conditional_dropds(WORK.MAPCHARTMAPPREP);&lt;/P&gt;&lt;P&gt;/* -------------------------------------------------------------------&lt;BR /&gt;&amp;nbsp;&amp;nbsp; End of task code&lt;BR /&gt;&amp;nbsp;&amp;nbsp; ------------------------------------------------------------------- */&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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2018 20:36:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Can-t-see-the-legend-description-in-the-graph/m-p/434686#M15019</guid>
      <dc:creator>Ahsan</dc:creator>
      <dc:date>2018-02-06T20:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: Can't see the legend description in the graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Can-t-see-the-legend-description-in-the-graph/m-p/434687#M15020</link>
      <description>This is the log&lt;BR /&gt;1 The SAS System 16:01 Monday, February 5, 2018&lt;BR /&gt;&lt;BR /&gt;1 ;*';*";*/;quit;run;&lt;BR /&gt;2 OPTIONS PAGENO=MIN;&lt;BR /&gt;3 %LET _CLIENTTASKLABEL='CHORO map with tooltips for mouseover - SAS edited (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)&lt;BR /&gt;3 ! (2) (2) (2) (2) (2) (2)';&lt;BR /&gt;4 %LET&lt;BR /&gt;4 ! _CLIENTPROJECTPATH='/sas/RA/nc_dhhs/OIA/ContinuousAudit/ContinuousAuditShared/CommonResources/ExampleMapProject/Example&lt;BR /&gt;4 ! map project.egp';&lt;BR /&gt;5 %LET _CLIENTPROJECTNAME='Example map project.egp';&lt;BR /&gt;6 %LET _SASPROGRAMFILE=;&lt;BR /&gt;7&lt;BR /&gt;8 ODS _ALL_ CLOSE;&lt;BR /&gt;9 OPTIONS DEV=ACTIVEX;&lt;BR /&gt;10 FILENAME EGSR TEMP;&lt;BR /&gt;11 ODS tagsets.sasreport13(ID=EGSR) FILE=EGSR&lt;BR /&gt;12 STYLE=HtmlBlue&lt;BR /&gt;13 STYLESHEET=(URL="file:///E:/SAS%20Installs/SASHome/SASEnterpriseGuide/7.1/Styles/HtmlBlue.css")&lt;BR /&gt;14 NOGTITLE&lt;BR /&gt;15 NOGFOOTNOTE&lt;BR /&gt;16 GPATH=&amp;amp;sasworklocation&lt;BR /&gt;17 ENCODING=UTF8&lt;BR /&gt;18 options(rolap="on")&lt;BR /&gt;19 ;&lt;BR /&gt;NOTE: Writing TAGSETS.SASREPORT13(EGSR) Body file: EGSR&lt;BR /&gt;20&lt;BR /&gt;21 /* -------------------------------------------------------------------&lt;BR /&gt;22 Code generated by SAS Task&lt;BR /&gt;23&lt;BR /&gt;24 Generated on: Thursday, May 4, 2017 at 1:08:28 PM&lt;BR /&gt;25 By task: Map Chart&lt;BR /&gt;26&lt;BR /&gt;27 Map Data: SASApp:MAPSGFK.US_COUNTIES Response Data: SASApp:WORK.ADDCOUNTYID Server: SASApp&lt;BR /&gt;28 ------------------------------------------------------------------- */&lt;BR /&gt;29&lt;BR /&gt;30 %_eg_conditional_dropds(WORK.MAPCHARTMAPPREP);&lt;BR /&gt;31 PROC SQL;&lt;BR /&gt;32 CREATE VIEW WORK.MAPCHARTMAPPREP AS&lt;BR /&gt;33 SELECT *&lt;BR /&gt;34 FROM MAPSGFK.US_COUNTIES&lt;BR /&gt;35 WHERE STATECODE = 'NC'&lt;BR /&gt;36 ;&lt;BR /&gt;NOTE: SQL view WORK.MAPCHARTMAPPREP has been defined.&lt;BR /&gt;37 QUIT;&lt;BR /&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;38&lt;BR /&gt;39 %_eg_conditional_dropds(WORK.MAPCHARTRESPONSEPREP);&lt;BR /&gt;40 PROC SQL;&lt;BR /&gt;41 CREATE VIEW WORK.MAPCHARTRESPONSEPREP AS&lt;BR /&gt;42 SELECT *&lt;BR /&gt;43 FROM WORK.deviations_by_county&lt;BR /&gt;44 ;&lt;BR /&gt;NOTE: SQL view WORK.MAPCHARTRESPONSEPREP has been defined.&lt;BR /&gt;45 QUIT;&lt;BR /&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;2 The SAS System 16:01 Monday, February 5, 2018&lt;BR /&gt;&lt;BR /&gt;cpu time 0.00 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;46&lt;BR /&gt;47 GOPTIONS RESET=ALL DEVICE=html5; /* Modified by SAS */&lt;BR /&gt;48&lt;BR /&gt;49&lt;BR /&gt;50 PATTERN1 VALUE=SOLID COLOR=CX99CC00;&lt;BR /&gt;51 PATTERN2 VALUE=SOLID COLOR=WHITE;&lt;BR /&gt;52 PATTERN3 VALUE=SOLID COLOR=YELLOW;&lt;BR /&gt;53 PATTERN4 VALUE=SOLID COLOR=CXFF6600;&lt;BR /&gt;54 PATTERN5 VALUE=SOLID COLOR=RED;&lt;BR /&gt;55&lt;BR /&gt;56 LEGEND1&lt;BR /&gt;57 DOWN=5&lt;BR /&gt;58 FRAME&lt;BR /&gt;59 LABEL=( FONT='Times New Roman' HEIGHT=14pt JUSTIFY=LEFT "Light green counties have unusually LOW per enrollee&lt;BR /&gt;59 ! spending. "&lt;BR /&gt;60 FONT='Times New Roman' HEIGHT=14pt JUSTIFY=LEFT "White counties have spending per enrollee that is within plus or&lt;BR /&gt;60 ! minus one standard deviation from the mean. "&lt;BR /&gt;61 FONT='Times New Roman' HEIGHT=14pt JUSTIFY=LEFT "Yellow, orange, and red counties have unusually HIGH per enrollee&lt;BR /&gt;61 ! spending.")&lt;BR /&gt;62 ;&lt;BR /&gt;63&lt;BR /&gt;64 TITLE;FOOTNOTE;&lt;BR /&gt;65&lt;BR /&gt;66 TITLE1 "NEMT Per Medicaid Enrollee Spend by County";&lt;BR /&gt;67 TITLE2 "Standard Deviations Above or Below Average";&lt;BR /&gt;68&lt;BR /&gt;69 FOOTNOTE1 "";&lt;BR /&gt;70&lt;BR /&gt;71 ods _ALL_ close; /* Modified by SAS */&lt;BR /&gt;72 ods html5 path='/sas/RA/nc_dhhs/OIA/ContinuousAudit/ContinuousAuditShared/CommonResources/ExampleMapProject' (url=none)&lt;BR /&gt;73 file='test.htm' (title="NEMT spending by county") style=htmlblue&lt;BR /&gt;74 options(bitmap_mode='inline'); /* Modified by SAS */&lt;BR /&gt;NOTE: Writing HTML5 Body file: test.htm&lt;BR /&gt;WARNING: Invalid device 'HTML5' for HTML5 destination. Using default device 'SVG'.&lt;BR /&gt;75&lt;BR /&gt;76 PROC GMAP GOUT=MAPCHART DATA=WORK.MAPCHARTRESPONSEPREP MAP=WORK.MAPCHARTMAPPREP ALL;&lt;BR /&gt;77 ID STATE COUNTY;&lt;BR /&gt;78 choro Deviations /&lt;BR /&gt;79 WOUTLINE=1&lt;BR /&gt;80 CDEFAULT=BLACK&lt;BR /&gt;81 DISCRETE&lt;BR /&gt;82 LEGEND=LEGEND5 html=tooltip&lt;BR /&gt;83 ;&lt;BR /&gt;84 RUN;&lt;BR /&gt;&lt;BR /&gt;WARNING: Legend statement 5 could not be found. The default legend description will be used.&lt;BR /&gt;NOTE: Foreground color WHITE same as background. Part of your graph might not be visible.&lt;BR /&gt;85 QUIT;&lt;BR /&gt;&lt;BR /&gt;NOTE: There were 100 observations read from the data set WORK.DEVIATIONS_BY_COUNTY.&lt;BR /&gt;NOTE: There were 52655 observations read from the data set MAPSGFK.US_COUNTIES.&lt;BR /&gt;WHERE (STATECODE='NC') and (RESOLUTION&amp;lt;=4);&lt;BR /&gt;NOTE: There were 52655 observations read from the data set WORK.MAPCHARTMAPPREP.&lt;BR /&gt;WHERE resolution&amp;lt;=4;&lt;BR /&gt;NOTE: PROCEDURE GMAP used (Total process time):&lt;BR /&gt;3 The SAS System 16:01 Monday, February 5, 2018&lt;BR /&gt;&lt;BR /&gt;real time 0.19 seconds&lt;BR /&gt;cpu time 0.19 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;86&lt;BR /&gt;87 TITLE;FOOTNOTE;&lt;BR /&gt;88&lt;BR /&gt;89 GOPTIONS RESET=LEGEND5;&lt;BR /&gt;WARNING: Invalid value specified for RESET.&lt;BR /&gt;90&lt;BR /&gt;91 GOPTIONS RESET=PATTERN;&lt;BR /&gt;92&lt;BR /&gt;93 GOPTIONS CBACK=;&lt;BR /&gt;94&lt;BR /&gt;95 ODS _ALL_ CLOSE;&lt;BR /&gt;96&lt;BR /&gt;97 %_eg_conditional_dropds(WORK.MAPCHARTRESPONSEPREP);&lt;BR /&gt;NOTE: View WORK.MAPCHARTRESPONSEPREP has been dropped.&lt;BR /&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;98 %_eg_conditional_dropds(WORK.MAPCHARTMAPPREP);&lt;BR /&gt;NOTE: View WORK.MAPCHARTMAPPREP has been dropped.&lt;BR /&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;99&lt;BR /&gt;100 /* -------------------------------------------------------------------&lt;BR /&gt;101 End of task code&lt;BR /&gt;102 ------------------------------------------------------------------- */&lt;BR /&gt;103&lt;BR /&gt;104&lt;BR /&gt;105&lt;BR /&gt;106&lt;BR /&gt;107&lt;BR /&gt;108 %LET _CLIENTTASKLABEL=;&lt;BR /&gt;109 %LET _CLIENTPROJECTPATH=;&lt;BR /&gt;110 %LET _CLIENTPROJECTNAME=;&lt;BR /&gt;111 %LET _SASPROGRAMFILE=;&lt;BR /&gt;112&lt;BR /&gt;113 ;*';*";*/;quit;run;&lt;BR /&gt;114 ODS _ALL_ CLOSE;&lt;BR /&gt;115&lt;BR /&gt;116&lt;BR /&gt;117 QUIT; RUN;&lt;BR /&gt;118&lt;BR /&gt;</description>
      <pubDate>Tue, 06 Feb 2018 20:39:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Can-t-see-the-legend-description-in-the-graph/m-p/434687#M15020</guid>
      <dc:creator>Ahsan</dc:creator>
      <dc:date>2018-02-06T20:39:23Z</dc:date>
    </item>
    <item>
      <title>Re: Can't see the legend description in the graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Can-t-see-the-legend-description-in-the-graph/m-p/434691#M15021</link>
      <description>&lt;P&gt;When modified the code i got this warning&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;WARNING: Font Times New Roman could not be used.&lt;/P&gt;&lt;P&gt;Font Albany AMT substituted for font Times New Roman.&lt;/P&gt;&lt;P&gt;WARNING: There is not enough room for even one legend entry and the label.&lt;/P&gt;&lt;P&gt;WARNING: The legend has been suppressed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2018 20:56:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Can-t-see-the-legend-description-in-the-graph/m-p/434691#M15021</guid>
      <dc:creator>Ahsan</dc:creator>
      <dc:date>2018-02-06T20:56:26Z</dc:date>
    </item>
    <item>
      <title>Re: Can't see the legend description in the graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Can-t-see-the-legend-description-in-the-graph/m-p/434698#M15022</link>
      <description>&lt;P&gt;This message may explain part of why you can't see the legend:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#ff0000"&gt;WARNING: Legend statement 5 could not be found. The default legend description will be used.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#ff0000"&gt;NOTE: Foreground color WHITE same as background. Part of your graph might not be visible.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#ff0000"&gt;85 QUIT;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;Your code defines a legend1 but you used legend5 in the code.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;A similar warning about using the incorrect image device is another potential troublemaker&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2018 21:25:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Can-t-see-the-legend-description-in-the-graph/m-p/434698#M15022</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-02-06T21:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: Can't see the legend description in the graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Can-t-see-the-legend-description-in-the-graph/m-p/434701#M15023</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/165195"&gt;@Ahsan&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;When modified the code i got this warning&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;WARNING: Font Times New Roman could not be used.&lt;/P&gt;
&lt;P&gt;Font Albany AMT substituted for font Times New Roman.&lt;/P&gt;
&lt;P&gt;WARNING: There is not enough room for even one legend entry and the label.&lt;/P&gt;
&lt;P&gt;WARNING: The legend has been suppressed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please help.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Reduce your font sizes and the amount of label text, make sure to use your defined legend Legend = Legend1, and you may want to specify a location for your legend.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2018 21:28:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Can-t-see-the-legend-description-in-the-graph/m-p/434701#M15023</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-02-06T21:28:32Z</dc:date>
    </item>
  </channel>
</rss>

