<?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: SGPLOT HEATMAP colormap labels/values size in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/744376#M21586</link>
    <description>&lt;P&gt;Yes, this works to set the file name.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods html path='/folders/myfolders/plots' style=my_style image_dpi=500;
ods listing gpath='/folders/myfolders/plots';
ods graphics /attrpriority=none imagename="heatmap" imagefmt=png;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;However I still get a "sashtml.htm" file created every time I create my png plot.&lt;/P&gt;
&lt;P&gt;Is there a way to avoid creating this .htm file?&lt;/P&gt;
&lt;P&gt;I understand I need to keep "ods html..." to set the style...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;/P&gt;</description>
    <pubDate>Fri, 28 May 2021 12:45:44 GMT</pubDate>
    <dc:creator>marta25</dc:creator>
    <dc:date>2021-05-28T12:45:44Z</dc:date>
    <item>
      <title>SGPLOT HEATMAP colormap labels/values size</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/743954#M21565</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am using PROC SGPLOT with HEATMAP and I would like to change the size of the colormap values.&lt;/P&gt;
&lt;P&gt;Here is my code and the resulting plot:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC SGPLOT data=  MARTA.mydata;
heatmap x=clocktime y=myvariable / colorresponse=aaa  colorstat=mean colormodel=(bigb red) xbinsize=0.25 ;
xaxis label='Clock time' values=(9 to 18 by 1) valueattrs=(size=14pt) labelattrs=(size=14pt);
yaxis label='My variable' valueattrs=(size=14pt) labelattrs=(size=14pt);
gradlegend / title='colormap' titleattrs=(size=14pt)  ;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2021-05-26 at 18.42.53.png" style="width: 541px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/59779i3DC625A3315FAC44/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2021-05-26 at 18.42.53.png" alt="Screenshot 2021-05-26 at 18.42.53.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;My problem seems to be simple but I can not find the solution. The values of the colormap are smaller compared to the other labels and values on the axes.&lt;/P&gt;
&lt;P&gt;How to set such values to 14pt?&lt;/P&gt;</description>
      <pubDate>Wed, 26 May 2021 16:46:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/743954#M21565</guid>
      <dc:creator>marta25</dc:creator>
      <dc:date>2021-05-26T16:46:10Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT HEATMAP colormap labels/values size</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/743961#M21567</link>
      <description>&lt;P&gt;The attributes in the interior of the heat map do not know about the attributes for the axis labels or ticks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What do you mean by "the values of the colormap"? Are you talking about the size of the rectangles that show the values of the aaa variable at each cell for (clocktime, myvariable)? If so, use&lt;/P&gt;
&lt;P&gt;XBINSIZE=1&lt;/P&gt;
&lt;P&gt;on the HEATMAP statement to have the rectangles span one unit in the x direction.&amp;nbsp; If desired, you can also use the YBINSIZE= option to change the size of the rectangles in the Y direction.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 May 2021 17:06:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/743961#M21567</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2021-05-26T17:06:39Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT HEATMAP colormap labels/values size</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/743962#M21568</link>
      <description>&lt;P&gt;If you mean the size of the colored heatmap areas then look at the XBINSIZE or YBINSIZE to specify a specific size. See what happens when you add Xbinsize=1 and Ybinsize=2 to the heatmap statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or possibly NXBINS and NYBINS (the number of bins). Try NXBINS=10 and NYBINS=10.&lt;/P&gt;
&lt;P&gt;There are other binning options as well to examine.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Data is important as well. We do not have your data and you don't provide any clues as to "how big" or range of values you want the areas to represent.&lt;/P&gt;</description>
      <pubDate>Wed, 26 May 2021 17:11:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/743962#M21568</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-05-26T17:11:20Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT HEATMAP colormap labels/values size</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/743976#M21569</link>
      <description>&lt;P&gt;To get the size of the text in the legend larger, I believe you can change the size= in the valueattrs= in the gradlegend. Here's the gradlegend valueattrs= example from the doc ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class="xis-codeFragment"&gt;valueattrs=(Color=Green Family=Arial &lt;STRONG&gt;Size=8&lt;/STRONG&gt; 
        Style=Italic Weight=Bold)&amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 May 2021 17:44:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/743976#M21569</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2021-05-26T17:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT HEATMAP colormap labels/values size</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/744026#M21573</link>
      <description>&lt;P&gt;Hi Robert,&lt;/P&gt;
&lt;P&gt;yes that was exactly my question and I had tried valueattrs=(size=...) as you wrote.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;gradlegend / title='colormap' titleattrs=(size=14pt) valueattrs=(size=14pt);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;My problem is that the word "valueattrs" in my code does not turn to blue:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2021-05-26 at 22.00.54.png" style="width: 649px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/59795i5ECE665DB451AFA5/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2021-05-26 at 22.00.54.png" alt="Screenshot 2021-05-26 at 22.00.54.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;...resulting in an error:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2021-05-26 at 21.56.04.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/59794i92942C0188C28E77/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2021-05-26 at 21.56.04.png" alt="Screenshot 2021-05-26 at 21.56.04.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't understand why...&lt;/P&gt;</description>
      <pubDate>Wed, 26 May 2021 20:02:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/744026#M21573</guid>
      <dc:creator>marta25</dc:creator>
      <dc:date>2021-05-26T20:02:34Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT HEATMAP colormap labels/values size</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/744036#M21576</link>
      <description>&lt;P&gt;Here is the doc for the GRADLEGEND statement:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/grstatproc/n0pejjes5ug1j2n1roobaiuj9w60.htm" target="_blank" rel="noopener"&gt;https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/grstatproc/n0pejjes5ug1j2n1roobaiuj9w60.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is no VALUESATTR= option for that statement in PROC SGPLOT. If you really want this, you will have to use the GTL and the CONTINUOUSLEGEND statement:&amp;nbsp;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/grstatgraph/p0xt3qm7y5hew9n1me6nbj81yxhj.htm" target="_blank"&gt;SAS Help Center: CONTINUOUSLEGEND Statement&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 May 2021 20:34:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/744036#M21576</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2021-05-26T20:34:15Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT HEATMAP colormap labels/values size</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/744111#M21577</link>
      <description>&lt;P&gt;Oops - sorry about that! I was looking at doc for a variant/version of SAS that you probably don't have. (Hopefully this feature will make its way into the more common versions of of SAS in the near future!)&lt;/P&gt;</description>
      <pubDate>Thu, 27 May 2021 11:12:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/744111#M21577</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2021-05-27T11:12:30Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT HEATMAP colormap labels/values size</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/744119#M21578</link>
      <description>&lt;P&gt;Here's a technique that works in SAS 9.4m7 (and probably earlier versions as well), using a custom ods style to control most of the normal (non-title/non-label) text in the graph. Since I don't have your data, I use some 'random' data from the sashelp sample lib to demonstrate.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods path(prepend) work.templat(update);&lt;BR /&gt;proc template;&lt;BR /&gt;define style &lt;STRONG&gt;my_style&lt;/STRONG&gt;;&lt;BR /&gt;parent=styles.htmlblue;&lt;BR /&gt;class &lt;STRONG&gt;GraphValueText&lt;/STRONG&gt; / font = ("&amp;lt;sans-serif&amp;gt;, &amp;lt;MTsans-serif&amp;gt;",&lt;STRONG&gt;14pt&lt;/STRONG&gt;);&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods html style=&lt;STRONG&gt;my_style&lt;/STRONG&gt;;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sgplot data=sashelp.class;&lt;BR /&gt;heatmap x=height y=weight / colorresponse=weight colorstat=mean colormodel=(bigb red) xbinsize=0.25 ;&lt;BR /&gt;xaxis label='Clock time' labelattrs=(size=14pt);&lt;BR /&gt;yaxis label='My variable' labelattrs=(size=14pt);&lt;BR /&gt;gradlegend / title='colormap' titleattrs=(size=14pt);&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gradlegend.png" style="width: 640px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/59807iADC565D0B666AF44/image-size/large?v=v2&amp;amp;px=999" role="button" title="gradlegend.png" alt="gradlegend.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 May 2021 11:46:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/744119#M21578</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2021-05-27T11:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT HEATMAP colormap labels/values size</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/744144#M21580</link>
      <description>&lt;P&gt;Thanks for your answer.&lt;/P&gt;
&lt;P&gt;It does not really work because now I get an authorization error:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2021-05-27 at 15.37.14.png" style="width: 816px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/59811i13CE1A5556814A02/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2021-05-27 at 15.37.14.png" alt="Screenshot 2021-05-27 at 15.37.14.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 May 2021 13:38:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/744144#M21580</guid>
      <dc:creator>marta25</dc:creator>
      <dc:date>2021-05-27T13:38:41Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT HEATMAP colormap labels/values size</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/744180#M21581</link>
      <description>&lt;P&gt;Hmm ... are you running SAS through Enterprise Guide, or SAS University Edition, or something like that?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If so, perhaps one of these threads will help:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-Get-HTML-output-in-EG-8-2/td-p/623073" target="_blank"&gt;https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-Get-HTML-output-in-EG-8-2/td-p/623073&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Analytics-U/Error-Message-in-SAS-University-Edition/td-p/425601" target="_blank"&gt;https://communities.sas.com/t5/SAS-Analytics-U/Error-Message-in-SAS-University-Edition/td-p/425601&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 May 2021 14:57:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/744180#M21581</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2021-05-27T14:57:43Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT HEATMAP colormap labels/values size</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/744331#M21582</link>
      <description>&lt;P&gt;Thanks, now it kind of works using this code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ODS HTML path='/folders/myfolders/plots'
         GPATH = '/folders/myfolders/plots/' image_dpi =300;
ods path(prepend) work.templat(update);
proc template;
define style my_style;
parent=styles.htmlblue;
class GraphValueText / font = ("&amp;lt;sans-serif&amp;gt;, &amp;lt;MTsans-serif&amp;gt;",14pt);
end;
run;
ods html path='/folders/myfolders/plots' style=my_style;
proc sgplot data=sashelp.class;
heatmap x=height y=weight / colorresponse=weight colorstat=mean colormodel=(bigb red) xbinsize=0.25 ;
xaxis label='Clock time' labelattrs=(size=14pt);
yaxis label='My variable' labelattrs=(size=14pt);
gradlegend / title='colormap' titleattrs=(size=14pt);
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;In this way, a .png image is saved together with a .htm file. I don't need this .htm file, is there a way to not generate it (except from deleting it manually)?&lt;/P&gt;
&lt;P&gt;Also, can I set the name of the generated file?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I used to save plots using:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods listing gpath='/folders/myfolders/plots';
ods graphics /attrpriority=none imagename="plot_heatmap"  noborder imagefmt=png;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;...but I don't know how to set the style here.&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 06:04:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/744331#M21582</guid>
      <dc:creator>marta25</dc:creator>
      <dc:date>2021-05-28T06:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT HEATMAP colormap labels/values size</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/744372#M21585</link>
      <description>&lt;P&gt;Have you tried ods graphics / imagename='plot_heatmap' to control the png name, like you were using before?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 12:30:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/744372#M21585</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2021-05-28T12:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT HEATMAP colormap labels/values size</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/744376#M21586</link>
      <description>&lt;P&gt;Yes, this works to set the file name.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods html path='/folders/myfolders/plots' style=my_style image_dpi=500;
ods listing gpath='/folders/myfolders/plots';
ods graphics /attrpriority=none imagename="heatmap" imagefmt=png;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;However I still get a "sashtml.htm" file created every time I create my png plot.&lt;/P&gt;
&lt;P&gt;Is there a way to avoid creating this .htm file?&lt;/P&gt;
&lt;P&gt;I understand I need to keep "ods html..." to set the style...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 12:45:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/744376#M21586</guid>
      <dc:creator>marta25</dc:creator>
      <dc:date>2021-05-28T12:45:44Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT HEATMAP colormap labels/values size</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/744455#M21588</link>
      <description>&lt;P&gt;I don't know - I've never not wanted the html file &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 16:24:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/744455#M21588</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2021-05-28T16:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT HEATMAP colormap labels/values size</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/744465#M21590</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/329008"&gt;@marta25&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Yes, this works to set the file name.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods html path='/folders/myfolders/plots' style=my_style image_dpi=500;
ods listing gpath='/folders/myfolders/plots';
ods graphics /attrpriority=none imagename="heatmap" imagefmt=png;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;However I still get a "sashtml.htm" file created every time I create my png plot.&lt;/P&gt;
&lt;P&gt;Is there a way to avoid creating this .htm file?&lt;/P&gt;
&lt;P&gt;I understand I need to keep "ods html..." to set the style...&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/329008"&gt;@marta25&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can send the HTML file to "nowhere" (arbitrary fileref, see &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lestmtsglobal/p05r9vhhqbhfzun1qo9mw64s4700.htm" target="_blank" rel="noopener"&gt;documentation&lt;/A&gt;)&lt;FONT face="helvetica"&gt;:&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename nowhere dummy;
ods html file=nowhere gpath='/folders/myfolders/plots' style=my_style image_dpi=500;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(I think with your additional ODS LISTING statement you also get a second PNG file, which you could avoid with &lt;FONT face="courier new,courier"&gt;ods listing close;&lt;/FONT&gt;.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 16:53:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/744465#M21590</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2021-05-28T16:53:22Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT HEATMAP colormap labels/values size</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/744515#M21593</link>
      <description>Great, thanks!!! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Fri, 28 May 2021 19:06:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SGPLOT-HEATMAP-colormap-labels-values-size/m-p/744515#M21593</guid>
      <dc:creator>marta25</dc:creator>
      <dc:date>2021-05-28T19:06:23Z</dc:date>
    </item>
  </channel>
</rss>

