<?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 ods graph - how to align graphs in html and how to start the axis from zero in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/ods-graph-how-to-align-graphs-in-html-and-how-to-start-the-axis/m-p/13572#M264</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Per the &lt;STRONG&gt;first &lt;/STRONG&gt;question...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since you're using "ods html" output, you should be able to use the 'nocenter' option, such as ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;options nocenter;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ods html .... {your other code}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Per the &lt;STRONG&gt;second &lt;/STRONG&gt;question - I'm not exactly sure what you're asking.&amp;nbsp; Could you elaborate more?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Sep 2011 12:21:20 GMT</pubDate>
    <dc:creator>GraphGuy</dc:creator>
    <dc:date>2011-09-21T12:21:20Z</dc:date>
    <item>
      <title>ods graph - how to align graphs in html and how to start the axis from zero</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ods-graph-how-to-align-graphs-in-html-and-how-to-start-the-axis/m-p/13571#M263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First question: aligning output&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All my graphs are placed in the center, i want them left&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* general graph settings */ &lt;BR /&gt;goptions reset=all border cback=white htitle=12pt; &lt;BR /&gt;OPTIONS DEV=activex;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ODS MARKUP &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; STYLE=&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CODEBASE="&lt;A href="http://imecwww/~sas/EG/sasgraph.exe"&gt;http://imecwww/~sas/EG/sasgraph.exe&lt;/A&gt;"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FILE=_webout&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;ods html file=_webout (title="&amp;amp;run_id View ") stylesheet=(URL="&lt;A href="http://imecwww.imec.be/~osp/fab300/CSS/ImecStyleProcReport.css"&gt;http://imecwww.imec.be/~osp/fab300/CSS/ImecStyleProcReport.css&lt;/A&gt;");&lt;BR /&gt;/* graphs to display JSC Voc Eta FF */ &lt;BR /&gt;title1 'Overview Voc (mV)';&lt;BR /&gt;proc gchart data=wacom_graphs;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VBAR Measurement /&amp;nbsp; width = 3.5 sumvar=VocD type=sum discrete autoref ;&lt;BR /&gt;run; quit;&lt;/P&gt;&lt;P&gt;title1 'Overview JSC ';&lt;BR /&gt;proc gchart data=wacom_graphs;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VBAR Measurement /&amp;nbsp; width = 3.5 sumvar=JSCD type=sum discrete autoref ;&lt;BR /&gt;run; quit;&lt;/P&gt;&lt;P&gt;title1 'Overview Efficiency (%)';&lt;BR /&gt;proc gchart data=wacom_graphs;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VBAR Measurement /&amp;nbsp; width = 3.5 sumvar=EtaD type=sum discrete autoref ;&lt;BR /&gt;run; quit;&lt;/P&gt;&lt;P&gt;title1 'Overview Fill Factor (%)';&lt;BR /&gt;proc gchart data=wacom_graphs;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VBAR Measurement /&amp;nbsp; width = 3.5 sumvar=FFD type=sum discrete autoref ;&lt;BR /&gt;run; quit;&lt;BR /&gt;ods html close;&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;Second question (other graphs - up to 10 overlay graphs)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The goal is that the curves will cut the x and y axis.&amp;nbsp; How can I do this, now they start at -2 or something.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Define symbol characteristics */&lt;BR /&gt;axis1 label=("I")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; width=2;&lt;/P&gt;&lt;P&gt;axis2 &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; label=("V")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; width=2;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;legend1 label=none &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; position=(top center inside)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mode=share;&lt;/P&gt;&lt;P&gt;proc gplot &lt;BR /&gt;data=all_data;&lt;BR /&gt;plot &amp;amp;plotstatement&amp;nbsp;&amp;nbsp; /overlay legend=legend1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; haxis=axis1&lt;BR /&gt;&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; vaxis=axis2&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vzero hzero&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Sep 2011 09:57:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ods-graph-how-to-align-graphs-in-html-and-how-to-start-the-axis/m-p/13571#M263</guid>
      <dc:creator>Filipvdr</dc:creator>
      <dc:date>2011-09-21T09:57:22Z</dc:date>
    </item>
    <item>
      <title>ods graph - how to align graphs in html and how to start the axis from zero</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ods-graph-how-to-align-graphs-in-html-and-how-to-start-the-axis/m-p/13572#M264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Per the &lt;STRONG&gt;first &lt;/STRONG&gt;question...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since you're using "ods html" output, you should be able to use the 'nocenter' option, such as ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;options nocenter;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ods html .... {your other code}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Per the &lt;STRONG&gt;second &lt;/STRONG&gt;question - I'm not exactly sure what you're asking.&amp;nbsp; Could you elaborate more?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Sep 2011 12:21:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ods-graph-how-to-align-graphs-in-html-and-how-to-start-the-axis/m-p/13572#M264</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2011-09-21T12:21:20Z</dc:date>
    </item>
    <item>
      <title>ods graph - how to align graphs in html and how to start the axis from zero</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ods-graph-how-to-align-graphs-in-html-and-how-to-start-the-axis/m-p/13573#M265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i did not knew that option, thanks! looking for that a long time&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the second well i got multiple curves, but they only want to see the positive values and especially the point where the curves cuts one of the axes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I tried to only select the positive points, but there is still some white space between.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So maybe when i select all the points, but the axes have to start at 0.0 then. Because when i select all the points the axis start at -2,-5 default for example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it is more clear now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Sep 2011 12:53:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ods-graph-how-to-align-graphs-in-html-and-how-to-start-the-axis/m-p/13573#M265</guid>
      <dc:creator>Filipvdr</dc:creator>
      <dc:date>2011-09-21T12:53:59Z</dc:date>
    </item>
    <item>
      <title>ods graph - how to align graphs in html and how to start the axis from zero</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ods-graph-how-to-align-graphs-in-html-and-how-to-start-the-axis/m-p/13574#M266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmm ... I'm not 100% sure how to get a graph like that -- you're basically just wanting to "clip" the graph and show the portion that's above zero, eh?&amp;nbsp; If this was proc gmap, you could use proc gproject to clip &amp;amp; close the lines around the polygons, but I'm not sure if gplot has an equivalent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could use 'mode=include' on the symbol statement so that the obsns that are outside the axis still have an effect on the interpolations, but I don't think that's going to "clip" them like what you're wanting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perhaps one of the gtl experts will know if this is possible in sgplot, etc(?)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Sep 2011 13:31:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ods-graph-how-to-align-graphs-in-html-and-how-to-start-the-axis/m-p/13574#M266</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2011-09-21T13:31:38Z</dc:date>
    </item>
    <item>
      <title>ods graph - how to align graphs in html and how to start the axis from zero</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ods-graph-how-to-align-graphs-in-html-and-how-to-start-the-axis/m-p/13575#M267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; If you can attach a illustration of what you want and some sample data, it will be easier to suggest options.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Sep 2011 13:45:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ods-graph-how-to-align-graphs-in-html-and-how-to-start-the-axis/m-p/13575#M267</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2011-09-21T13:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: ods graph - how to align graphs in html and how to start the axis from zero</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ods-graph-how-to-align-graphs-in-html-and-how-to-start-the-axis/m-p/13576#M268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try running this program and see if this is the look you;re after:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080; font-size: 10pt; font-family: Courier New;"&gt;data wave;&lt;BR /&gt;&amp;nbsp; do x=-6 to 6 by .05;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; y=sin(x);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; output;&lt;BR /&gt;&amp;nbsp; end;&lt;BR /&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080; font-size: 10pt; font-family: Courier New;"&gt;symbol i=join;&lt;BR /&gt;axis1 style=0;&lt;BR /&gt;goptions dev=png;&lt;BR /&gt;ods html;&lt;BR /&gt;proc gplot data=wave;&lt;BR /&gt;plot y*x / href=0 vref=0 noframe vaxis=axis1 haxis=axis1;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;BR /&gt;ods html close;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #008080; font-size: 10pt; font-family: Courier New;"&gt;﻿&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;﻿&lt;/STRONG&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;﻿&lt;/STRONG&gt;Dan&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080; font-size: 10pt; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-size: 10pt; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-size: 10pt; font-family: Courier New;"&gt; &lt;/SPAN&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;SPAN style="font-family: Courier New; color: #000080; font-size: 10pt;"&gt;&lt;SPAN style="color: #000080; font-size: 10pt; font-family: Courier New;"&gt;&lt;/SPAN&gt;&lt;/SPAN&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;SPAN style="color: #008080; font-size: 10pt; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Courier New; color: #000080; font-size: 10pt;"&gt;&lt;SPAN style="color: #000080; font-size: 10pt; font-family: Courier New;"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080; font-size: 10pt; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080; font-size: 10pt; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-size: 10pt; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Courier New; color: #000080; font-size: 10pt;"&gt;&lt;SPAN style="color: #000080; font-size: 10pt; font-family: Courier New;"&gt;&lt;/SPAN&gt;&lt;/SPAN&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;SPAN style="font-family: Courier New; color: #000080; font-size: 10pt;"&gt;&lt;SPAN style="color: #000080; font-size: 10pt; font-family: Courier New;"&gt;&lt;/SPAN&gt;&lt;/SPAN&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;&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;&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;&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Sep 2011 17:43:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ods-graph-how-to-align-graphs-in-html-and-how-to-start-the-axis/m-p/13576#M268</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2011-09-21T17:43:10Z</dc:date>
    </item>
  </channel>
</rss>

