Hi,
I am novice user of JMP. When creating a graph, I know I can add a horizontal line using this method:
But what is the script for choosing thickness and how do I change the color of that line.
Right now, I have thin black line:
Many thanks
Solved! Go to Solution.
Add:
Pen Size( 2 );
Pen Color( red );
with of course your thickness and color.
These commands are all documented in the Scripting Guide and Scripting Index.
I strongly suggest you read the Scripting Guide, and that you familiarize yourself with the Scripting Index. It will make your journey into JMP fare more pleasant and more productive.
Hi,
You will need to add a couple of commands before the H Line (Y) command:
I hope it helps.
Best,
TS
Hi,
I am novice user of JMP. When creating a graph, I know I can add a horizontal line using this method:
But what is the script for choosing thickness and how do I change the color of that line.
Right now, I have thin black line:
Many thanks
Solved! Go to Solution.
Add:
Pen Size( 2 );
Pen Color( red );
with of course your thickness and color.
These commands are all documented in the Scripting Guide and Scripting Index.
I strongly suggest you read the Scripting Guide, and that you familiarize yourself with the Scripting Index. It will make your journey into JMP fare more pleasant and more productive.
Hi,
You will need to add a couple of commands before the H Line (Y) command:
I hope it helps.
Best,
TS
Add:
Pen Size( 2 );
Pen Color( red );
with of course your thickness and color.
These commands are all documented in the Scripting Guide and Scripting Index.
I strongly suggest you read the Scripting Guide, and that you familiarize yourself with the Scripting Index. It will make your journey into JMP fare more pleasant and more productive.
Thanks for solution. I'll take a look at the scripting guide.
Hi,
You will need to add a couple of commands before the H Line (Y) command:
I hope it helps.
Best,
TS
Thank you for your solution.
Hello @HCC,
This is more for your own information and for those who do not script. You can add a reference line by right clicking on the axis of choice and select Axis Settings. The lower right corner of the UI is dedicated to adding reference lines including thickness and color.
HTH
Bill
Plus, @HCC , re: Bill @Bill_Worley descibiing interactive approach, please remember that most of what you do interactively you can save to script and then edit/incorproate the saved JSL into other scripts.