<?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: Control order of bars for a GTL barchart in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Control-order-of-bars-for-a-GTL-barchart/m-p/374601#M12940</link>
    <description>&lt;P&gt;Since the online documentation explicitly shows this as an example:&lt;/P&gt;
&lt;PRE&gt;tickvaluelist=("Sedan" "Sports" "Wagon" "SUV")&lt;/PRE&gt;
&lt;P&gt;then the issue is not character values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also what you show is not an ERROR. It is a NOTE that somewhere you have a quote followed by a character other than a space. Since there are a number of syntax features such as date literals: '01JAN2017'd and 'names not valid'n in some SAS sessions the quote-character combination may be used for some use in the future.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When posting log results it is best to post the entire section of code, such as from Proc Template, as the actual issue sometimes starts lines before the indicated error, warning or note. And post into a code box opened using the Forum {i} menu icon to prevent the message window from reformatting text. Not that you message shows underscores that originally appeared under a different part of the code an almost certainly did not appear in the left margin.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Providing some data in the form of a data step would help to provide an actual tested solution.&lt;/P&gt;</description>
    <pubDate>Mon, 10 Jul 2017 17:15:13 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2017-07-10T17:15:13Z</dc:date>
    <item>
      <title>Control order of bars for a GTL barchart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Control-order-of-bars-for-a-GTL-barchart/m-p/374022#M12937</link>
      <description>&lt;P&gt;How can you control the order of bars in a barchart created in GTL? I sorted the bar variable (percent)&amp;nbsp;in descending order but the plot orders in the bars alphabetically be the group variable (prinaquifer2).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*calculate detection frequency of Pb210 by category in percentage*/&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;freq&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;data&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=b;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;by&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; PrinAquifer2;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;tables&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; H17503*PrinAquifer2 / &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;noprint&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;out&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=Freq1Out; &lt;/FONT&gt;&lt;FONT color="#008000" face="Courier New" size="2"&gt;/* save Percent variable */&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; Freq2Out; &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;set&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; Freq1Out;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;if&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; H17503=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;0&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;then&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;delete&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;Percent = Percent / &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;100&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;format&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; Percent &lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;PERCENT5.&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;sort&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;data&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=Freq2Out; &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;by&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;descending&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; Percent; &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;run&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;/*combine data sets*/&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; plot;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;set&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; b Freq2Out;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;keep&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; PrinAquifer2 percent P17503;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;template&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;define&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;statgraph&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; testplot;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;begingraph&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;layout&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;overlay&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; / &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;Backgroundcolor&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=CXFFFFFF &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;Border&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=False &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;Wallcolor&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=CXFFFFFF &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;Opaque&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=False &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;yaxisopts&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=(label=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;"Detection Frequency"&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; linearopts=(viewmin=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;0&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt; viewmax=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt; tickvaluesequence=(&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;start&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;0&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt; end=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt; increment=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;.2&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;)))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;y2axisopts&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=(type=log label=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;"Pb-210 (pCi/L)"&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;xaxisopts&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=(display=(line ticks tickvalues));&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;barchart&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;x&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=PrinAquifer2 &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;y&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=percent;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;boxplot&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;x&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=PrinAquifer2 &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;y&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=P17503 / &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;yaxis&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=y2 &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;fillattrs&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=(color=CXFFFFFF) ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;endlayout&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;endgraph&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;end&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;ods&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;graphics&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; / &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;width&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;450&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;px&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;ods&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;listing&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;*ods latex path="C:\NYBackup\projects\Glacial\Publications\Po210nPb210\Pb210";&lt;/P&gt;&lt;P&gt;*ods graphics on / imagefmt=pdf;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;sgrender&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;data&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=plot&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;template&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=testplot;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;*ods graphics off;&lt;/P&gt;&lt;P&gt;*ods latex close;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;quit&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/14051i125F42ABA2961E83/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="SGRender31.png" title="SGRender31.png" /&gt;</description>
      <pubDate>Fri, 07 Jul 2017 16:51:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Control-order-of-bars-for-a-GTL-barchart/m-p/374022#M12937</guid>
      <dc:creator>pstack</dc:creator>
      <dc:date>2017-07-07T16:51:00Z</dc:date>
    </item>
    <item>
      <title>Re: Control order of bars for a GTL barchart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Control-order-of-bars-for-a-GTL-barchart/m-p/374051#M12938</link>
      <description>&lt;P&gt;could try type=discrete &lt;BR /&gt;xaxisopts=(type=discrete discreteOpts=(tickValueList='PIED' 'RGAQ' 'SECP' '' ) display=(line ticks tickvalues));&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jul 2017 18:09:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Control-order-of-bars-for-a-GTL-barchart/m-p/374051#M12938</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2017-07-07T18:09:55Z</dc:date>
    </item>
    <item>
      <title>Re: Control order of bars for a GTL barchart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Control-order-of-bars-for-a-GTL-barchart/m-p/374061#M12939</link>
      <description>&lt;P&gt;I see where you're going with this but TIckValueList=(numeric-list) so I don't think it will work with characters. I tried and got errors:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;xaxisopts=(type=discrete discreteOpts=(tickValueList='PIED' 'BNRF'&lt;/P&gt;&lt;P&gt;---&lt;/P&gt;&lt;P&gt;346! 'VPDC' 'CLOW' 'BNRC' 'CMOR' 'SECP' 'GLAC' 'RGAQ' 'METX'&lt;/P&gt;&lt;P&gt;347 'BISC' 'CLPT' 'NACP' 'FLOR' 'HPAQ' 'OZRK') display=(line ticks&lt;/P&gt;&lt;P&gt;--- --- --- ---&lt;/P&gt;&lt;P&gt;49 49 49 49&lt;/P&gt;&lt;P&gt;347! tickvalues));&lt;/P&gt;&lt;P&gt;NOTE 49-169: The meaning of an identifier after a quoted string might change in a future SAS&lt;/P&gt;&lt;P&gt;release. Inserting white space between a quoted string and the succeeding&lt;/P&gt;&lt;P&gt;identifier is recommended.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jul 2017 18:27:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Control-order-of-bars-for-a-GTL-barchart/m-p/374061#M12939</guid>
      <dc:creator>pstack</dc:creator>
      <dc:date>2017-07-07T18:27:29Z</dc:date>
    </item>
    <item>
      <title>Re: Control order of bars for a GTL barchart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Control-order-of-bars-for-a-GTL-barchart/m-p/374601#M12940</link>
      <description>&lt;P&gt;Since the online documentation explicitly shows this as an example:&lt;/P&gt;
&lt;PRE&gt;tickvaluelist=("Sedan" "Sports" "Wagon" "SUV")&lt;/PRE&gt;
&lt;P&gt;then the issue is not character values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also what you show is not an ERROR. It is a NOTE that somewhere you have a quote followed by a character other than a space. Since there are a number of syntax features such as date literals: '01JAN2017'd and 'names not valid'n in some SAS sessions the quote-character combination may be used for some use in the future.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When posting log results it is best to post the entire section of code, such as from Proc Template, as the actual issue sometimes starts lines before the indicated error, warning or note. And post into a code box opened using the Forum {i} menu icon to prevent the message window from reformatting text. Not that you message shows underscores that originally appeared under a different part of the code an almost certainly did not appear in the left margin.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Providing some data in the form of a data step would help to provide an actual tested solution.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jul 2017 17:15:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Control-order-of-bars-for-a-GTL-barchart/m-p/374601#M12940</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-07-10T17:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: Control order of bars for a GTL barchart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Control-order-of-bars-for-a-GTL-barchart/m-p/374926#M12941</link>
      <description>&lt;P&gt;Jag,&lt;/P&gt;&lt;P&gt;Please accept my apologies. Your suggestion for controlling the order of bars for a GTL barchart did work. I revisited your post after recieving other feedback and using your code solved my problem. My initial reaction that tickValueList would only work with numerics was due to a coding error on my part.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help. -Paul&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2017 12:44:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Control-order-of-bars-for-a-GTL-barchart/m-p/374926#M12941</guid>
      <dc:creator>pstack</dc:creator>
      <dc:date>2017-07-11T12:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: Control order of bars for a GTL barchart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Control-order-of-bars-for-a-GTL-barchart/m-p/375092#M12942</link>
      <description>&lt;P&gt;The best way to handle this is to format the numeric column to a string column. The numeric category values are automatically getting sorted in numeric order. On your BARCHART and BOXPLOT statements, try this and see if it works for you:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;barchart&lt;/FONT&gt; &lt;FONT face="Courier New" size="2" color="#0000ff"&gt;x&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=eval(put(PrinAquifer2, BEST.))&amp;nbsp;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;y&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=percent;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;boxplot&lt;/FONT&gt; &lt;FONT face="Courier New" size="2" color="#0000ff"&gt;x&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=eval(put(PrinAquifer2, BEST.))&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;y&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=P17503 / &lt;/FONT&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;yaxis&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=y2 &lt;/FONT&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;fillattrs&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=(color=CXFFFFFF) ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;Hope this helps!&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;Dan&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2017 19:01:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Control-order-of-bars-for-a-GTL-barchart/m-p/375092#M12942</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2017-07-11T19:01:48Z</dc:date>
    </item>
  </channel>
</rss>

