<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, Plot formatting: Label secondary x, y-axis in boxed style</title>
    <link>http://www.mapleprimes.com/questions/124984-Plot-Formatting-Label-Secondary-X</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Tue, 09 Jun 2026 14:16:25 GMT</lastBuildDate>
    <pubDate>Tue, 09 Jun 2026 14:16:25 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, Plot formatting: Label secondary x, y-axis in boxed style</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, Plot formatting: Label secondary x, y-axis in boxed style</title>
      <link>http://www.mapleprimes.com/questions/124984-Plot-Formatting-Label-Secondary-X</link>
    </image>
    <item>
      <title>dualaxisplot</title>
      <link>http://www.mapleprimes.com/questions/124984-Plot-Formatting-Label-Secondary-X?ref=Feed:MaplePrimes:Plot formatting: Label secondary x, y-axis in boxed style:Comments#answer124991</link>
      <itunes:summary>&lt;p&gt;If you are not already aware of dualaxisplot from the plots package, you may want to explore the possibilities it offers together with options for label directions and gridlines.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;If you are not already aware of dualaxisplot from the plots package, you may want to explore the possibilities it offers together with options for label directions and gridlines.&lt;/p&gt;</description>
      <guid>124991</guid>
      <pubDate>Mon, 22 Aug 2011 10:25:47 Z</pubDate>
      <itunes:author>Preben Alsholm</itunes:author>
      <author>Preben Alsholm</author>
    </item>
    <item>
      <title>some control on axes, but limited</title>
      <link>http://www.mapleprimes.com/questions/124984-Plot-Formatting-Label-Secondary-X?ref=Feed:MaplePrimes:Plot formatting: Label secondary x, y-axis in boxed style:Comments#answer124993</link>
      <itunes:summary>&lt;p&gt;In addition to Preben's suggestions,&lt;/p&gt;
&lt;p&gt;I have found these help pages useful (you may well have seen them already):&lt;/p&gt;
&lt;p&gt;http://www.maplesoft.com/support/help/Maple/view.aspx?path=plot%2faxis&lt;br&gt;http://www.maplesoft.com/support/help/Maple/view.aspx?path=plot%2ftickmarks&lt;/p&gt;
&lt;p&gt;in particular, note the following plot options:&lt;/p&gt;
&lt;p&gt;'axes' = box #box(ed),frame,normal&lt;/p&gt;
&lt;p&gt;'axis' =[location=high] #high,low,origin&lt;/p&gt;
&lt;p&gt;and also note that you can control the label fonts, the label orientations, the number of tickmarks, their positions, etc.&lt;/p&gt;
&lt;p&gt;Your picture has a standard axis cutting at the origin together with a box around it, it looks like a mix of the normal and boxed styles in Maple. If dualaxisplot doesn't do what you want, you may need to&amp;nbsp;(untested idea) create two plots and combine them with plots:-display(plot1,plot2).&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;In addition to Preben's suggestions,&lt;/p&gt;
&lt;p&gt;I have found these help pages useful (you may well have seen them already):&lt;/p&gt;
&lt;p&gt;http://www.maplesoft.com/support/help/Maple/view.aspx?path=plot%2faxis&lt;br&gt;http://www.maplesoft.com/support/help/Maple/view.aspx?path=plot%2ftickmarks&lt;/p&gt;
&lt;p&gt;in particular, note the following plot options:&lt;/p&gt;
&lt;p&gt;'axes' = box #box(ed),frame,normal&lt;/p&gt;
&lt;p&gt;'axis' =[location=high] #high,low,origin&lt;/p&gt;
&lt;p&gt;and also note that you can control the label fonts, the label orientations, the number of tickmarks, their positions, etc.&lt;/p&gt;
&lt;p&gt;Your picture has a standard axis cutting at the origin together with a box around it, it looks like a mix of the normal and boxed styles in Maple. If dualaxisplot doesn't do what you want, you may need to&amp;nbsp;(untested idea) create two plots and combine them with plots:-display(plot1,plot2).&lt;/p&gt;</description>
      <guid>124993</guid>
      <pubDate>Mon, 22 Aug 2011 11:47:22 Z</pubDate>
      <itunes:author>PatrickT</itunes:author>
      <author>PatrickT</author>
    </item>
    <item>
      <title>Maple doesn't provide a good solution</title>
      <link>http://www.mapleprimes.com/questions/124984-Plot-Formatting-Label-Secondary-X?ref=Feed:MaplePrimes:Plot formatting: Label secondary x, y-axis in boxed style:Comments#answer125014</link>
      <itunes:summary>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;1) it seems that Maple takes the axis parameter defined in the first plot a simple tryout is:&lt;/p&gt;
&lt;p&gt;A := plot(x^2, x = 1 .. 5, axes = boxed, view = [-10 .. 10, -10 .. 10]);&lt;/p&gt;
&lt;p&gt;B := plot(x^3, x = 1 .. 5, axes = normal, view = [-10 .. 10, -10 .. 10]);&lt;/p&gt;
&lt;p&gt;display([B, A]);&lt;/p&gt;
&lt;p&gt;display([A, B]);&lt;/p&gt;
&lt;p&gt;If you look at the output you'll see that it is either boxed or normal..., but not displayed together!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;2) Maple doesn't provide "at the moment" an option for the secondary x axes (top)&lt;/p&gt;
&lt;p&gt;3) You can't label 4 axes, and even by hand using textplot there is no vertical option to get an output similiar to my gnuplot attached above.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;But neitherless thank you both for your efforts,&lt;/p&gt;
&lt;p&gt;Tobias&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;1) it seems that Maple takes the axis parameter defined in the first plot a simple tryout is:&lt;/p&gt;
&lt;p&gt;A := plot(x^2, x = 1 .. 5, axes = boxed, view = [-10 .. 10, -10 .. 10]);&lt;/p&gt;
&lt;p&gt;B := plot(x^3, x = 1 .. 5, axes = normal, view = [-10 .. 10, -10 .. 10]);&lt;/p&gt;
&lt;p&gt;display([B, A]);&lt;/p&gt;
&lt;p&gt;display([A, B]);&lt;/p&gt;
&lt;p&gt;If you look at the output you'll see that it is either boxed or normal..., but not displayed together!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;2) Maple doesn't provide "at the moment" an option for the secondary x axes (top)&lt;/p&gt;
&lt;p&gt;3) You can't label 4 axes, and even by hand using textplot there is no vertical option to get an output similiar to my gnuplot attached above.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;But neitherless thank you both for your efforts,&lt;/p&gt;
&lt;p&gt;Tobias&lt;/p&gt;</description>
      <guid>125014</guid>
      <pubDate>Mon, 22 Aug 2011 21:17:05 Z</pubDate>
      <itunes:author>tomukoe</itunes:author>
      <author>tomukoe</author>
    </item>
    <item>
      <title>labeldirections</title>
      <link>http://www.mapleprimes.com/questions/124984-Plot-Formatting-Label-Secondary-X?ref=Feed:MaplePrimes:Plot formatting: Label secondary x, y-axis in boxed style:Comments#comment125055</link>
      <itunes:summary>&lt;p&gt;You can get vertical labels by using labeldirections.&lt;/p&gt;
&lt;p&gt;dualaxisplot(plot(x^3,x=-1..1,labels=["Bottom","Left"],labelfont=["Times","Roman",15],labeldirections=[default,vertical]),&lt;br&gt;plot(x^5,x=-1..1,labels=["Bottom","Right"],labelfont=["Times","Roman",15],labeldirections=[default,vertical]),&lt;br&gt;axis=[gridlines=[5,majorlines=2]],title="Top",titlefont=["Times","Roman",15]);&lt;br&gt;&lt;br&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;You can get vertical labels by using labeldirections.&lt;/p&gt;
&lt;p&gt;dualaxisplot(plot(x^3,x=-1..1,labels=["Bottom","Left"],labelfont=["Times","Roman",15],labeldirections=[default,vertical]),&lt;br&gt;plot(x^5,x=-1..1,labels=["Bottom","Right"],labelfont=["Times","Roman",15],labeldirections=[default,vertical]),&lt;br&gt;axis=[gridlines=[5,majorlines=2]],title="Top",titlefont=["Times","Roman",15]);&lt;br&gt;&lt;br&gt;&lt;/p&gt;</description>
      <guid>125055</guid>
      <pubDate>Tue, 23 Aug 2011 10:39:10 Z</pubDate>
      <itunes:author>Preben Alsholm</itunes:author>
      <author>Preben Alsholm</author>
    </item>
    <item>
      <title>lovely!</title>
      <link>http://www.mapleprimes.com/questions/124984-Plot-Formatting-Label-Secondary-X?ref=Feed:MaplePrimes:Plot formatting: Label secondary x, y-axis in boxed style:Comments#comment125076</link>
      <itunes:summary>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/124984-Plot-Formatting-Label-Secondary-X#comment125055"&gt;@Preben Alsholm&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Nice one! here's the result:&lt;/p&gt;
&lt;p&gt;&lt;a href="/view.aspx?sf=125076/419812/boxedplot.png"&gt;&lt;img src="/view.aspx?sf=125076/419812/boxedplot.png" alt=""&gt;&lt;/a&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/124984-Plot-Formatting-Label-Secondary-X#comment125055"&gt;@Preben Alsholm&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Nice one! here's the result:&lt;/p&gt;
&lt;p&gt;&lt;a href="/view.aspx?sf=125076/419812/boxedplot.png"&gt;&lt;img src="/view.aspx?sf=125076/419812/boxedplot.png" alt=""&gt;&lt;/a&gt;&lt;/p&gt;</description>
      <guid>125076</guid>
      <pubDate>Wed, 24 Aug 2011 00:57:11 Z</pubDate>
      <itunes:author>PatrickT</itunes:author>
      <author>PatrickT</author>
    </item>
    <item>
      <title>Difference</title>
      <link>http://www.mapleprimes.com/questions/124984-Plot-Formatting-Label-Secondary-X?ref=Feed:MaplePrimes:Plot formatting: Label secondary x, y-axis in boxed style:Comments#comment125078</link>
      <itunes:summary>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/124984-Plot-Formatting-Label-Secondary-X#comment125076"&gt;@PatrickT&lt;/a&gt; It is interesting that the picture displayed on MaplePrimes has the label "Right" appearing horizontally.&lt;/p&gt;
&lt;p&gt;It is correctly displayed on the monitor screen in Maple 15. &lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/124984-Plot-Formatting-Label-Secondary-X#comment125076"&gt;@PatrickT&lt;/a&gt; It is interesting that the picture displayed on MaplePrimes has the label "Right" appearing horizontally.&lt;/p&gt;
&lt;p&gt;It is correctly displayed on the monitor screen in Maple 15. &lt;/p&gt;</description>
      <guid>125078</guid>
      <pubDate>Wed, 24 Aug 2011 09:41:06 Z</pubDate>
      <itunes:author>Preben Alsholm</itunes:author>
      <author>Preben Alsholm</author>
    </item>
  </channel>
</rss>