<?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 tooltip for BOXPLOT using GTL in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/tooltip-for-BOXPLOT-using-GTL/m-p/286801#M10158</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I am trying to create custom tooltip (other than used in imagemap=ON) using GTL .is it possible to show tool tip data using categories other than used in boxplot.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Following is the code i am trying with:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods graphics on/ border=off width = 1300PX HEIGHT = 650PX imagemap=on;&lt;/P&gt;
&lt;P&gt;proc template;&lt;BR /&gt;define statgraph boxplot;&lt;BR /&gt;begingraph;&lt;BR /&gt;entrytitle "Boxplot";&lt;BR /&gt;layout overlay;&lt;BR /&gt;boxplot y=mnval x=Variant/spread=true ;&lt;BR /&gt;referenceline y=&amp;amp;bin_lsl/curvelabel="LSL=&amp;amp;bin_lsl" ;&lt;BR /&gt;referenceline y=&amp;amp;bin_usl/curvelabel="USL=&amp;amp;bin_usl";&lt;/P&gt;
&lt;P&gt;endlayout;&lt;BR /&gt;endgraph;&lt;BR /&gt;end;&lt;/P&gt;
&lt;P&gt;proc sgrender data=xyz template=boxplot;&lt;BR /&gt;where Plant="&amp;amp;Plant" and 'Shorttext'n = "&amp;amp;test_param"&lt;BR /&gt;;&lt;BR /&gt;label Variant="RM variant";&lt;BR /&gt;run;&lt;/P&gt;</description>
    <pubDate>Mon, 25 Jul 2016 09:56:32 GMT</pubDate>
    <dc:creator>gauravp1993</dc:creator>
    <dc:date>2016-07-25T09:56:32Z</dc:date>
    <item>
      <title>tooltip for BOXPLOT using GTL</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/tooltip-for-BOXPLOT-using-GTL/m-p/286801#M10158</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I am trying to create custom tooltip (other than used in imagemap=ON) using GTL .is it possible to show tool tip data using categories other than used in boxplot.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Following is the code i am trying with:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods graphics on/ border=off width = 1300PX HEIGHT = 650PX imagemap=on;&lt;/P&gt;
&lt;P&gt;proc template;&lt;BR /&gt;define statgraph boxplot;&lt;BR /&gt;begingraph;&lt;BR /&gt;entrytitle "Boxplot";&lt;BR /&gt;layout overlay;&lt;BR /&gt;boxplot y=mnval x=Variant/spread=true ;&lt;BR /&gt;referenceline y=&amp;amp;bin_lsl/curvelabel="LSL=&amp;amp;bin_lsl" ;&lt;BR /&gt;referenceline y=&amp;amp;bin_usl/curvelabel="USL=&amp;amp;bin_usl";&lt;/P&gt;
&lt;P&gt;endlayout;&lt;BR /&gt;endgraph;&lt;BR /&gt;end;&lt;/P&gt;
&lt;P&gt;proc sgrender data=xyz template=boxplot;&lt;BR /&gt;where Plant="&amp;amp;Plant" and 'Shorttext'n = "&amp;amp;test_param"&lt;BR /&gt;;&lt;BR /&gt;label Variant="RM variant";&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jul 2016 09:56:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/tooltip-for-BOXPLOT-using-GTL/m-p/286801#M10158</guid>
      <dc:creator>gauravp1993</dc:creator>
      <dc:date>2016-07-25T09:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: tooltip for sgplot using GTL</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/tooltip-for-BOXPLOT-using-GTL/m-p/286806#M10159</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have a look at the sample mentioned with &lt;A href="http://support.sas.com/documentation/cdl/en/grstatgraph/67882/HTML/default/viewer.htm#p1db7ll5bzyo4nn1pv31g04etput.htm" target="_blank"&gt;BOXPLOTPARM statement&lt;/A&gt;, looks like it does what you need.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bruno&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jul 2016 09:54:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/tooltip-for-BOXPLOT-using-GTL/m-p/286806#M10159</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2016-07-25T09:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: tooltip for sgplot using GTL</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/tooltip-for-BOXPLOT-using-GTL/m-p/287095#M10161</link>
      <description>&lt;P&gt;thank you for suggesting this method &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;but do we have to provide calculated stats like mean median to y axis while defining stat= option?&lt;/P&gt;&lt;P&gt;it is showing ths error for me:&lt;/P&gt;&lt;P&gt;The boxplotparm statement will not be drawn because one or more of the required arguments were not supplied.&lt;/P&gt;&lt;P&gt;I replaced boxplot with boxplotparm , added stat=stat and&amp;nbsp;orient=vertical in above code.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jul 2016 05:57:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/tooltip-for-BOXPLOT-using-GTL/m-p/287095#M10161</guid>
      <dc:creator>gauravp1993</dc:creator>
      <dc:date>2016-07-26T05:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: tooltip for sgplot using GTL</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/tooltip-for-BOXPLOT-using-GTL/m-p/287109#M10162</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have a look at the doc for the BOXPLOTPARM, it states:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE class="xis-summary"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD rowspan="3" class="xis-requirement"&gt;Requirements:&lt;/TD&gt;
&lt;TD class="xis-summaryValue"&gt;&lt;SPAN class="xis-xrefSee"&gt;&lt;SPAN class="xis-xrefText"&gt;The input data must be precomputed. See &lt;/SPAN&gt;&lt;A title="" href="http://support.sas.com/documentation/cdl/en/grstatgraph/67882/HTML/default/p1db7ll5bzyo4nn1pv31g04etput.htm#p19kosvtu4l2e0n1r1n6w9426shn" target="_blank"&gt;Input Data Requirements for the BOXPLOTPARM Statement&lt;/A&gt;&lt;SPAN class="xis-xrefText"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So BOXPLOT and BOXPLOTPARM are not interchangeable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bruno&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jul 2016 07:09:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/tooltip-for-BOXPLOT-using-GTL/m-p/287109#M10162</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2016-07-26T07:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: tooltip for BOXPLOT using GTL</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/tooltip-for-BOXPLOT-using-GTL/m-p/287431#M10168</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please also have a look at this recent Graphically Speaking blog entry &lt;A href="http://blogs.sas.com/content/graphicallyspeaking/2016/07/25/unbox-your-box-plots-part-deux/" target="_blank"&gt;http://blogs.sas.com/content/graphicallyspeaking/2016/07/25/unbox-your-box-plots-part-deux/&lt;/A&gt; by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19552"&gt;@PrashantH_sas﻿&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bruno&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jul 2016 07:36:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/tooltip-for-BOXPLOT-using-GTL/m-p/287431#M10168</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2016-07-27T07:36:53Z</dc:date>
    </item>
  </channel>
</rss>

