<?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 Why? NOTE: The graph will be rendered as an image due to the use of data skins. in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Why-NOTE-The-graph-will-be-rendered-as-an-image-due-to-the-use/m-p/241563#M8771</link>
    <description>&lt;P&gt;The following attempt to create a PDF ODS plot using GTL reports (SAS 9.4M2 Win64):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333399"&gt;NOTE: The graph will be rendered as an image due to the use of data skins.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/odsug/67921/HTML/default/p0kroq43yu0lspn16hk1u4c65lti.htm#n1t73d1kv8sjwjn1npcr1qv0vnkf" target="_self"&gt;SAS 9.4 online documentation&lt;/A&gt;&amp;nbsp;provides a list of conditions (some specifically for 9.4M2) when "&lt;SPAN&gt;vector graphics image &lt;EM&gt;[the PDF default]&lt;/EM&gt; cannot be generated&lt;/SPAN&gt;". As far as I can tell, I've eliminated all features that prevent vector graphics, including the "data skins" mentioned in the NOTE.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;At least two of the mentioned conditions, I&amp;nbsp;may not fully understand, but I don't think I'm using either:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;"graphs that contain outline marker characters"&lt;/LI&gt;&lt;LI&gt;"graphs that include a text plot that displays text with an outlined bounding box or text with a filled bounding-box background"&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I'm not using a &lt;A href="http://support.sas.com/documentation/cdl/en/grstatgraph/67882/HTML/default/p08qhdljvzthmnn1vkbule00ad6r.htm#p0802650evga51n18ldwe6r1ujun" target="_self"&gt;Scatterplot Outlined Marker Character&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;And I'm not using a Textplot, with or without bounding box.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's the code (a GTL approach &lt;A href="http://blogs.sas.com/content/graphicallyspeaking/2015/12/23/box-plot-with-stat-table-and-markers/" target="_self"&gt;based on Sanjay's Dec-2015 blog&lt;/A&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;/* Calculate summary stats, and concatenate&amp;nbsp;onto heart data for GTL AxisTable */&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;proc sort data=sashelp.heart out=heart;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; by bp_status smoking_status;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;proc summary data=heart noprint;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; by bp_status smoking_status;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; var diastolic;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; output out=stats (drop=_type_ _freq_) mean=mean std=std;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;data heart;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; set sashelp.heart&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;stats ;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;proc template;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; define statgraph xalignedstats;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; dynamic _GRP _CAT _MEASURE _STAT1 _STAT2 ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; begingraph / border=false dataskin=none;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; layout overlay / walldisplay=none ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; boxplot x=_CAT y=_MEASURE / group=_GRP &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&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; groupdisplay=cluster;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; innermargin / align=bottom ;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; axistable x=_CAT value=_GRP / class=_GRP classdisplay=cluster;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; axistable x=_CAT value=_STAT1 / class=_GRP classdisplay=cluster;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; axistable x=_CAT value=_STAT2 / class=_GRP classdisplay=cluster;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; endinnermargin;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; endlayout;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; endgraph;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; end;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;goptions reset=all;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;ods graphics on / reset=all;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;ODS PDF FILE='mypdf.pdf';&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;proc sgrender data=heart template=xalignedstats;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; dynamic &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; _GRP ='bp_status'&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; _CAT ='smoking_status' &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; _MEASURE ='diastolic'&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; _STAT1 ='mean'&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; _STAT2 ='std'&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; ;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;ODS PDF CLOSE;&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 03 Jan 2016 17:44:32 GMT</pubDate>
    <dc:creator>DDT</dc:creator>
    <dc:date>2016-01-03T17:44:32Z</dc:date>
    <item>
      <title>Why? NOTE: The graph will be rendered as an image due to the use of data skins.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Why-NOTE-The-graph-will-be-rendered-as-an-image-due-to-the-use/m-p/241563#M8771</link>
      <description>&lt;P&gt;The following attempt to create a PDF ODS plot using GTL reports (SAS 9.4M2 Win64):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333399"&gt;NOTE: The graph will be rendered as an image due to the use of data skins.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/odsug/67921/HTML/default/p0kroq43yu0lspn16hk1u4c65lti.htm#n1t73d1kv8sjwjn1npcr1qv0vnkf" target="_self"&gt;SAS 9.4 online documentation&lt;/A&gt;&amp;nbsp;provides a list of conditions (some specifically for 9.4M2) when "&lt;SPAN&gt;vector graphics image &lt;EM&gt;[the PDF default]&lt;/EM&gt; cannot be generated&lt;/SPAN&gt;". As far as I can tell, I've eliminated all features that prevent vector graphics, including the "data skins" mentioned in the NOTE.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;At least two of the mentioned conditions, I&amp;nbsp;may not fully understand, but I don't think I'm using either:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;"graphs that contain outline marker characters"&lt;/LI&gt;&lt;LI&gt;"graphs that include a text plot that displays text with an outlined bounding box or text with a filled bounding-box background"&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I'm not using a &lt;A href="http://support.sas.com/documentation/cdl/en/grstatgraph/67882/HTML/default/p08qhdljvzthmnn1vkbule00ad6r.htm#p0802650evga51n18ldwe6r1ujun" target="_self"&gt;Scatterplot Outlined Marker Character&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;And I'm not using a Textplot, with or without bounding box.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's the code (a GTL approach &lt;A href="http://blogs.sas.com/content/graphicallyspeaking/2015/12/23/box-plot-with-stat-table-and-markers/" target="_self"&gt;based on Sanjay's Dec-2015 blog&lt;/A&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;/* Calculate summary stats, and concatenate&amp;nbsp;onto heart data for GTL AxisTable */&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;proc sort data=sashelp.heart out=heart;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; by bp_status smoking_status;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;proc summary data=heart noprint;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; by bp_status smoking_status;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; var diastolic;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; output out=stats (drop=_type_ _freq_) mean=mean std=std;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;data heart;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; set sashelp.heart&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;stats ;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;proc template;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; define statgraph xalignedstats;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; dynamic _GRP _CAT _MEASURE _STAT1 _STAT2 ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; begingraph / border=false dataskin=none;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; layout overlay / walldisplay=none ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; boxplot x=_CAT y=_MEASURE / group=_GRP &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&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; groupdisplay=cluster;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; innermargin / align=bottom ;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; axistable x=_CAT value=_GRP / class=_GRP classdisplay=cluster;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; axistable x=_CAT value=_STAT1 / class=_GRP classdisplay=cluster;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; axistable x=_CAT value=_STAT2 / class=_GRP classdisplay=cluster;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; endinnermargin;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; endlayout;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; endgraph;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; end;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;goptions reset=all;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;ods graphics on / reset=all;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;ODS PDF FILE='mypdf.pdf';&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;proc sgrender data=heart template=xalignedstats;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; dynamic &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; _GRP ='bp_status'&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; _CAT ='smoking_status' &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; _MEASURE ='diastolic'&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; _STAT1 ='mean'&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; _STAT2 ='std'&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; ;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;ODS PDF CLOSE;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 03 Jan 2016 17:44:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Why-NOTE-The-graph-will-be-rendered-as-an-image-due-to-the-use/m-p/241563#M8771</guid>
      <dc:creator>DDT</dc:creator>
      <dc:date>2016-01-03T17:44:32Z</dc:date>
    </item>
    <item>
      <title>Re: Why? NOTE: The graph will be rendered as an image due to the use of data skins.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Why-NOTE-The-graph-will-be-rendered-as-an-image-due-to-the-use/m-p/241569#M8773</link>
      <description>&lt;P&gt;I do not see this error with SAS 9.40M3. &amp;nbsp;I see you are using M2.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, you might try the split tick values.&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="line-height: 20px;"&gt;&amp;nbsp; &amp;nbsp; layout overlay / walldisplay=none xaxisopts=(discreteopts=(tickvaluefitpolicy=&lt;STRONG&gt;splitrotate&lt;/STRONG&gt;));&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 03 Jan 2016 20:24:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Why-NOTE-The-graph-will-be-rendered-as-an-image-due-to-the-use/m-p/241569#M8773</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2016-01-03T20:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: Why? NOTE: The graph will be rendered as an image due to the use of data skins.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Why-NOTE-The-graph-will-be-rendered-as-an-image-due-to-the-use/m-p/241600#M8775</link>
      <description>&lt;P&gt;Many thanks for confirming so quickly, Sanjay.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Preventing the drawing of text on the diagonal (&lt;A href="http://support.sas.com/documentation/cdl/en/grstatgraph/67882/HTML/default/n0fksz728ytyz2n1ws13vlnkudyn.htm#p0j3hje6pijt2tn0zdybmb8kkzhp" target="_self"&gt;tickvaluefitpolicy of splitrotate&lt;/A&gt;) does *not* prevent this NOTE for me with SAS9.4M2.&lt;/P&gt;&lt;P&gt;I also tried turning off plot features one-by-one, but didn't manage to suppress this NOTE.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So the&amp;nbsp;reasons mount for me to press our IT department to release&amp;nbsp;M3 to us &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2016 07:52:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Why-NOTE-The-graph-will-be-rendered-as-an-image-due-to-the-use/m-p/241600#M8775</guid>
      <dc:creator>DDT</dc:creator>
      <dc:date>2016-01-11T07:52:03Z</dc:date>
    </item>
  </channel>
</rss>

