JMP 14.2 联机文档
发现 JMP
使用 JMP
基本分析
基本绘图
刻画器指南
实验设计指南
拟合线性模型
预测和专业建模
多元方法
质量和过程方法
可靠性和生存方法
消费者研究
Scripting Guide
JSL Syntax Reference
该帮助的版本不再更新,请参见
https://www.jmp.com/support/help/zh-cn/15.2
获取最新的版本.
Scripting Guide
•
Scripting Graphs
•
Graph Elements
• Get the Properties of a Graphics Frame
上一个
•
下一个
Get the Properties of a Graphics Frame
Several functions are useful for getting properties of an existing graphics frame:
H Size
Returns the horizontal size of the graphics frame in pixels.
V Size
Returns the vertical size of the graphics frame in pixels.
X Origin
Returns the
x
-value for the left edge of the graphics frame.
X Range
Returns the distance from the left to right edges of a display box.
Y Origin
Returns the
y
-value for the bottom edge of the graphics frame.
Y Range
Returns the distance from the bottom to top edges of a display box.
In the following expressions, the first line calculates the right edge. The second line calculates the top edge.
Oval(
...,
rightEdge = X Origin() + X Range();
topEdge = Y Origin() + Y Range();
);