<?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: Decimal points to commas in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Decimal-points-to-commas/m-p/87651#M3232</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might also try using a 'locale' for the desired country/language, and then the nlnum format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The nlnum format basically looks at the country/language set in the locale, and formats the decimals &amp;amp; commas in the number appropriately.&amp;nbsp; Here is an example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;options LOCALE=French_France;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc gplot data=sashelp.class;&lt;BR /&gt;format age height nlnum5.1;&lt;BR /&gt;plot age*height;&lt;BR /&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Jun 2012 12:21:12 GMT</pubDate>
    <dc:creator>GraphGuy</dc:creator>
    <dc:date>2012-06-20T12:21:12Z</dc:date>
    <item>
      <title>Decimal points to commas</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Decimal-points-to-commas/m-p/87649#M3230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am generating plots using GPLOT and I need the decimal points to be displayed as commas in the numbers on the X and Y axes.&amp;nbsp; Any ideas on how to do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2012 11:46:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Decimal-points-to-commas/m-p/87649#M3230</guid>
      <dc:creator>fastb</dc:creator>
      <dc:date>2012-06-20T11:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: Decimal points to commas</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Decimal-points-to-commas/m-p/87650#M3231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use numx.d format to display comma instead of a period to separate decimal point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; input xvar yvar;&lt;/P&gt;&lt;P&gt;datalines; &lt;/P&gt;&lt;P&gt;1.2 2&lt;/P&gt;&lt;P&gt;2.3 3&lt;/P&gt;&lt;P&gt;3.5 5&lt;/P&gt;&lt;P&gt;4.2 7&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;goptions reset=all border cback=white htitle=12pt htext=10pt;&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;&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;/P&gt;&lt;P&gt;title;&lt;/P&gt;&lt;P&gt;axis1 label=none;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;symbol1 interpol=spline value=dot color=blue;&lt;/P&gt;&lt;P&gt;proc gplot data=have;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; plot yvar*xvar/vaxis=axis1 ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; format yvar xvar numx.2; &lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2012 12:07:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Decimal-points-to-commas/m-p/87650#M3231</guid>
      <dc:creator>Alpay</dc:creator>
      <dc:date>2012-06-20T12:07:07Z</dc:date>
    </item>
    <item>
      <title>Re: Decimal points to commas</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Decimal-points-to-commas/m-p/87651#M3232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might also try using a 'locale' for the desired country/language, and then the nlnum format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The nlnum format basically looks at the country/language set in the locale, and formats the decimals &amp;amp; commas in the number appropriately.&amp;nbsp; Here is an example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;options LOCALE=French_France;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc gplot data=sashelp.class;&lt;BR /&gt;format age height nlnum5.1;&lt;BR /&gt;plot age*height;&lt;BR /&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2012 12:21:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Decimal-points-to-commas/m-p/87651#M3232</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2012-06-20T12:21:12Z</dc:date>
    </item>
    <item>
      <title>Re: Decimal points to commas</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Decimal-points-to-commas/m-p/87652#M3233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Robert!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2012 17:55:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Decimal-points-to-commas/m-p/87652#M3233</guid>
      <dc:creator>fastb</dc:creator>
      <dc:date>2012-06-20T17:55:33Z</dc:date>
    </item>
  </channel>
</rss>

