<?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: gplot: sum on symbol like sum on bar in gchart possible? in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/gplot-sum-on-symbol-like-sum-on-bar-in-gchart-possible/m-p/99947#M3721</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ahh - you hadn't mentioned you were using Activex!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A lot of little things aren't supported in dev=Activex (and dev=Java), and you are quite likely to bump into these when creating custom graphs.&amp;nbsp; Therefore, I always recommend that people creating custom graphs use dev=png.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Dec 2012 15:57:01 GMT</pubDate>
    <dc:creator>GraphGuy</dc:creator>
    <dc:date>2012-12-17T15:57:01Z</dc:date>
    <item>
      <title>gplot: sum on symbol like sum on bar in gchart possible?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/gplot-sum-on-symbol-like-sum-on-bar-in-gchart-possible/m-p/99941#M3715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a plot with connected symbols. Is it possible to write the vaxis value on top of each symbol like in this example?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="plot_sum_on_symbol.gif" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/2853_plot_sum_on_symbol.gif" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know it is possible with prog gchart... vbar. You simply write sum into the vbar statement. I tried it with the plot statement but get the error that the syntax is not correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best wishes&lt;/P&gt;&lt;P&gt;Eva&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2012 10:33:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/gplot-sum-on-symbol-like-sum-on-bar-in-gchart-possible/m-p/99941#M3715</guid>
      <dc:creator>Eva</dc:creator>
      <dc:date>2012-12-14T10:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: gplot: sum on symbol like sum on bar in gchart possible?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/gplot-sum-on-symbol-like-sum-on-bar-in-gchart-possible/m-p/99942#M3716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use Proc Gplot's "pointlabel" for that.&amp;nbsp; By default, it uses the y-value as the label (which is what you want, I believe?).&amp;nbsp; You can also customize the label, and use another variable if you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;symbol1 value=dot interpol=none &lt;STRONG&gt;pointlabel&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc gplot data=sashelp.class;&lt;/P&gt;&lt;P&gt;plot height*weight=1;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2012 13:14:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/gplot-sum-on-symbol-like-sum-on-bar-in-gchart-possible/m-p/99942#M3716</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2012-12-14T13:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: gplot: sum on symbol like sum on bar in gchart possible?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/gplot-sum-on-symbol-like-sum-on-bar-in-gchart-possible/m-p/99943#M3717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx. I would never have googled for "pointlabel" &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; It works. And foundit now in the sas help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best wishes&lt;/P&gt;&lt;P&gt;Eva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2012 13:35:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/gplot-sum-on-symbol-like-sum-on-bar-in-gchart-possible/m-p/99943#M3717</guid>
      <dc:creator>Eva</dc:creator>
      <dc:date>2012-12-14T13:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: gplot: sum on symbol like sum on bar in gchart possible?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/gplot-sum-on-symbol-like-sum-on-bar-in-gchart-possible/m-p/99944#M3718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I formatted the variable I user for the pointlabel now in commax10.2&lt;/P&gt;&lt;P&gt;Unfortunately then the values on the y-axis are also in this format. Can I use a different format for the values on an axis?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2012 17:15:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/gplot-sum-on-symbol-like-sum-on-bar-in-gchart-possible/m-p/99944#M3718</guid>
      <dc:creator>Eva</dc:creator>
      <dc:date>2012-12-14T17:15:24Z</dc:date>
    </item>
    <item>
      <title>Re: gplot: sum on symbol like sum on bar in gchart possible?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/gplot-sum-on-symbol-like-sum-on-bar-in-gchart-possible/m-p/99945#M3719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's where the "&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;You can also customize the label, and use another variable if you want&lt;/SPAN&gt;" comes in, such as ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data my_data; set sashelp.class;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;my_text&lt;/STRONG&gt;=put(height,commax10.2);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;symbol1 value=dot interpol=none pointlabel=(&lt;STRONG&gt;'#my_text'&lt;/STRONG&gt;);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc gplot data=my_data;&lt;/P&gt;&lt;P&gt;plot height*weight=1;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2012 18:12:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/gplot-sum-on-symbol-like-sum-on-bar-in-gchart-possible/m-p/99945#M3719</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2012-12-14T18:12:59Z</dc:date>
    </item>
    <item>
      <title>Re: gplot: sum on symbol like sum on bar in gchart possible?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/gplot-sum-on-symbol-like-sum-on-bar-in-gchart-possible/m-p/99946#M3720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately not supported by activex. Like axis split='...' is not &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2012 15:45:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/gplot-sum-on-symbol-like-sum-on-bar-in-gchart-possible/m-p/99946#M3720</guid>
      <dc:creator>Eva</dc:creator>
      <dc:date>2012-12-17T15:45:28Z</dc:date>
    </item>
    <item>
      <title>Re: gplot: sum on symbol like sum on bar in gchart possible?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/gplot-sum-on-symbol-like-sum-on-bar-in-gchart-possible/m-p/99947#M3721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ahh - you hadn't mentioned you were using Activex!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A lot of little things aren't supported in dev=Activex (and dev=Java), and you are quite likely to bump into these when creating custom graphs.&amp;nbsp; Therefore, I always recommend that people creating custom graphs use dev=png.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2012 15:57:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/gplot-sum-on-symbol-like-sum-on-bar-in-gchart-possible/m-p/99947#M3721</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2012-12-17T15:57:01Z</dc:date>
    </item>
  </channel>
</rss>

