<?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 Can't get just ONE axis to reverse in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Can-t-get-just-ONE-axis-to-reverse/m-p/453850#M70061</link>
    <description>&lt;P&gt;I'm trying to get just the Y axis inverted, using JSL&lt;/P&gt;&lt;P&gt;This is a graph-builder that contains shapes from a NAME.jsl file with an XY.JSL file as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Whenever I reverse one axis the other reverses as well, how can I get my Y axis ALONE to invert and the X axis to stay the same?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I do this on other graphs it works fine, but this one that contains Custom shapes has me stumped.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there anything I can do?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried even setting the Min/Max range but not matter what I do to one axis it gets applied to both of them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This affects this script generated chart in both JMP 14 and JMP16. just tested both to see if JMP16 handled shapes better.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;//gbr2 = Report( gb_w_c );

//gbr2[axisbox( 1 )] &amp;lt;&amp;lt; Reversed Scale( 1 ); //Hits both axes at same time unfortunately&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;//This just leaves me with both axis reversed&amp;nbsp;

Dispatch({},"",ScaleBox(1), {Max( 0 ), Min( 300000 ),Reversed Scale(1)}), //Y axis
Dispatch({},"",ScaleBox(2), {Min( 0 ), Max( 300000 ),Reversed Scale(0)}), //X axis&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 09 Jun 2023 18:09:30 GMT</pubDate>
    <dc:creator>xxvvcczz</dc:creator>
    <dc:date>2023-06-09T18:09:30Z</dc:date>
    <item>
      <title>Can't get just ONE axis to reverse</title>
      <link>https://community.jmp.com/t5/Discussions/Can-t-get-just-ONE-axis-to-reverse/m-p/453850#M70061</link>
      <description>&lt;P&gt;I'm trying to get just the Y axis inverted, using JSL&lt;/P&gt;&lt;P&gt;This is a graph-builder that contains shapes from a NAME.jsl file with an XY.JSL file as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Whenever I reverse one axis the other reverses as well, how can I get my Y axis ALONE to invert and the X axis to stay the same?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I do this on other graphs it works fine, but this one that contains Custom shapes has me stumped.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there anything I can do?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried even setting the Min/Max range but not matter what I do to one axis it gets applied to both of them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This affects this script generated chart in both JMP 14 and JMP16. just tested both to see if JMP16 handled shapes better.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;//gbr2 = Report( gb_w_c );

//gbr2[axisbox( 1 )] &amp;lt;&amp;lt; Reversed Scale( 1 ); //Hits both axes at same time unfortunately&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;//This just leaves me with both axis reversed&amp;nbsp;

Dispatch({},"",ScaleBox(1), {Max( 0 ), Min( 300000 ),Reversed Scale(1)}), //Y axis
Dispatch({},"",ScaleBox(2), {Min( 0 ), Max( 300000 ),Reversed Scale(0)}), //X axis&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 18:09:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Can-t-get-just-ONE-axis-to-reverse/m-p/453850#M70061</guid>
      <dc:creator>xxvvcczz</dc:creator>
      <dc:date>2023-06-09T18:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: Can't get just ONE axis to reverse</title>
      <link>https://community.jmp.com/t5/Discussions/Can-t-get-just-ONE-axis-to-reverse/m-p/453932#M70070</link>
      <description>&lt;P&gt;Instead of reversing the scale, could you just invert your shape file definition?&amp;nbsp; If the axis values are important you might need to get creative with your axis title.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To invert the shape file, just open the XY file, pick one axis and make a new formula with old axis multiplied by -1 (or use something else that is meaningful to users), then delete the formula for the new column, delete the old column, and finally rename the new column to the old name.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jan 2022 12:44:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Can-t-get-just-ONE-axis-to-reverse/m-p/453932#M70070</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2022-01-25T12:44:36Z</dc:date>
    </item>
    <item>
      <title>Re: Can't get just ONE axis to reverse</title>
      <link>https://community.jmp.com/t5/Discussions/Can-t-get-just-ONE-axis-to-reverse/m-p/454126#M70081</link>
      <description>&lt;P&gt;I really need 0,0 to be the top left corner of the array and for the Y axis to increase as it goes down.&lt;/P&gt;&lt;P&gt;That matches the factory equipment this GUI is designed to help with.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Presenting the users with negative numbers on the Y axis that don't match the equipment is going to be too confusing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I love the way JMP allows you to interact with on screen shapes once they are rendered (filtering, selecting, generating new datasets from selected shape rows).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Initial Rendering, refreshing, and editing however is really difficult. The quirky behavior with these shapes makes the investment in creating applications using them really risky since they may just not pan out altogether.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jan 2022 17:30:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Can-t-get-just-ONE-axis-to-reverse/m-p/454126#M70081</guid>
      <dc:creator>xxvvcczz</dc:creator>
      <dc:date>2022-01-25T17:30:05Z</dc:date>
    </item>
  </channel>
</rss>

