unfortunately, this might be easier to describe with a little JSL than it is with a series of steps.
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << Graph Builder(
Size( 741, 350 ),
Show Control Panel( 0 ),
Variables(
X( :height ),
Y( :weight ),
Y( :plus, Position( 1 ) ),
Y( :minus, Position( 1 ) )
),
Elements(
Line( X, Y( 1 ), Legend( 6 ) ),
Area( X, Y( 2 ), Y( 3 ), Legend( 7 ), Area Style( "Range" ) )
)
);
The key is to add your center and upper and lower columns to the Y axis. (in Graph Builder)
Then, remove all the other graph elements, followed by adding the connect the dots line, and then the overlay lines (Area).
Next, go into the variables role for the line and uncheck your upper and lower column. Go into the Area, and make the type a Range, go into the variables and uncheck the center column. (don't uncheck the Y column)
If the line isnt visible, ie. behind the range area line, then right click on the white space of the graph, go to Customize, and reoder teh elements. (little plus/minus buttons)
JMP Systems Engineer, Health and Life Sciences (Pharma)