<?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 SGRender: adjust tick options in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/SGRender-adjust-tick-options/m-p/179074#M6583</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to adjust the x-axis tick marks for the first chart below to look like the one on the 2nd chart. (The tick value would only display the datetime of 12am per day)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The x-axis is datetime. format. Tried the timeopts option but can't get it to work.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image-thumbnail jive-image" height="289" src="https://communities.sas.com/legacyfs/online/6819_Capture.PNG" width="668" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Jul 2014 23:59:45 GMT</pubDate>
    <dc:creator>chrisgo</dc:creator>
    <dc:date>2014-07-14T23:59:45Z</dc:date>
    <item>
      <title>SGRender: adjust tick options</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SGRender-adjust-tick-options/m-p/179074#M6583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to adjust the x-axis tick marks for the first chart below to look like the one on the 2nd chart. (The tick value would only display the datetime of 12am per day)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The x-axis is datetime. format. Tried the timeopts option but can't get it to work.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image-thumbnail jive-image" height="289" src="https://communities.sas.com/legacyfs/online/6819_Capture.PNG" width="668" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2014 23:59:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SGRender-adjust-tick-options/m-p/179074#M6583</guid>
      <dc:creator>chrisgo</dc:creator>
      <dc:date>2014-07-14T23:59:45Z</dc:date>
    </item>
    <item>
      <title>Re: SGRender: adjust tick options</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SGRender-adjust-tick-options/m-p/179075#M6584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It helps if you include your working program with data (simulated if necessary), so anyone trying to help does not have to start from scratch to try out different options.&amp;nbsp; Without code and data,I suggest trying xaxisopts=(timeopts=(interval=day))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2014 00:55:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SGRender-adjust-tick-options/m-p/179075#M6584</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2014-07-15T00:55:51Z</dc:date>
    </item>
    <item>
      <title>Re: SGRender: adjust tick options</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SGRender-adjust-tick-options/m-p/179076#M6585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I attached the data and here's the program for the chart:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;proc template;&lt;/P&gt;&lt;P&gt;define statgraph Graph3;&lt;/P&gt;&lt;P&gt;dynamic V1 V2 V3 v4 v5 v6;&lt;/P&gt;&lt;P&gt;begingraph /&amp;nbsp; designwidth=1050 designheight=380;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; entrytitle halign=center "xxxxxxxxxxxxxxxxxxxxxxxxxx" / textattrs=(size=14 );&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; layout lattice / rowdatarange=data columndatarange=data rows=1 rowgutter=10 columngutter=10;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; layout overlay / xaxisopts=(discreteopts=( tickvaluefitpolicy=splitrotate tickvaluerotation=vertical) &lt;/P&gt;&lt;P&gt;type=discrete griddisplay=on labelattrs=(size=12 style=NORMAL weight=BOLD )) &lt;/P&gt;&lt;P&gt;yaxisopts=( griddisplay=on label=('%sDET Yield') labelattrs=(size=12 style=NORMAL weight=BOLD )&lt;/P&gt;&lt;P&gt;linearopts=(viewmax=1.0 viewmin=0.7)) y2axisopts=( label=('VOLUME') labelattrs=(size=12 style=NORMAL weight=BOLD )&lt;/P&gt;&lt;P&gt;linearopts=(viewmin=0))&lt;/P&gt;&lt;P&gt;; &lt;/P&gt;&lt;P&gt;barchart x=V2 y=V5 /&amp;nbsp; group=V1 name='bar' yaxis=Y2 display=(FILL) &lt;/P&gt;&lt;P&gt; groupdisplay=Stack dataskin=pressed clusterwidth=1.0&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; scatterplot x=V2 y=V3 / group=V1 name='scatter' MARKERCHARACTERATTRS=(size=11 ) MARKERCHARACTER=toolmark&lt;/P&gt;&lt;P&gt;rolename=(tip1=PRODUCT tip2=TOOL tip3=TEST_DATE tip4=DET_YIELD tip5=VOLUME tip6=TARGET)&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;tip=(tip1 tip2 tip3 tip4 tip5 tip6 );&lt;/P&gt;&lt;P&gt; seriesplot x=V2 y=V3 /&amp;nbsp; group=V1 name='series' connectorder=xaxis lineattrs=(pattern=SOLID thickness=2 );&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; seriesplot x=V2 y=V6 / name='series2' display=(markers) connectorder=xaxis &lt;/P&gt;&lt;P&gt;lineattrs=(color=CX639A21 pattern=SOLID thickness=3 ) &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; markerattrs=(color=CX639A21 symbol=CIRCLEFILLED size=14 );&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;seriesplot x=V2 y=LCL / name='LL' connectorder=xaxis lineattrs=(color=red pattern=DASH thickness=2 );&lt;/P&gt;&lt;P&gt;seriesplot x=V2 y=UCL / name='UL' connectorder=xaxis lineattrs=(color=red pattern=DASH thickness=2 );&lt;/P&gt;&lt;P&gt;seriesplot x=V2 y=TARGET / name='Target' connectorder=xaxis lineattrs=(color=black pattern=solid thickness=4 );&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; endlayout;&lt;/P&gt;&lt;P&gt;&amp;nbsp; sidebar / align=bottom spacefill=false;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; discretelegend 'scatter' / opaque=true border=true halign=center valign=center displayclipped=true&lt;/P&gt;&lt;P&gt;across=7 order=rowmajor;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; endsidebar;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; endlayout;&lt;/P&gt;&lt;P&gt;endgraph;&lt;/P&gt;&lt;P&gt;end;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sgrender data=temp(where=(head_type="DN")) template=Graph3;&lt;/P&gt;&lt;P&gt;dynamic V1="TOOL" V2="TEST_DATE" V3="DET_YIELD" v4="TARGET" v5="VOLUME" v6="DET_YIELD_OA";&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2014 02:03:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SGRender-adjust-tick-options/m-p/179076#M6585</guid>
      <dc:creator>chrisgo</dc:creator>
      <dc:date>2014-07-15T02:03:01Z</dc:date>
    </item>
  </channel>
</rss>

