You are right, the original request is still open: a missing step at the lower left.
So, no possibility to close the wish.
On the other hand:
Concerning CDF/ Cumulative Probability in Graph Builder, most parts were available or were improved in JMP19.
- CDF was always there - for lines : just drag the variable onto the Y axis and activate Cumulative Percent.
- already there, but even more secret: use 1s on the Y axis to enable JMP to plot CDF plots with points and smoother.
new:
- Pspline fit + maximum value constraint = 1 for smoother:

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Graph Builder(
Transform Column( "ones", Formula( 1 ) ),
Variables( X( :height ), Y( :ones ) ),
Elements(
Points( X, Y, Legend( 5 ), Summary Statistic( "Cumulative Percent" ) ),
Smoother(
X,
Y,
Legend( 6 ),
Summary Statistic( "Cumulative Percent" ),
Method( "P-Spline" ),
Maximum Constraint( 1 )
),
Line(
X,
Y,
Legend( 7 ),
Connection( "Step" ),
Summary Statistic( "Cumulative Percent" )
)
)
);
even better: Scoping
This allows the user to generate grouped Cumulative Probability plots with a few mouse clicks.
Ones which are immune against mistakes of the users - which show the right plot even with added Data Filter, Overlay and Trellis plot design. No need to adjust the formula of the transfrom column.

Graph Builder(
Transform Column(
"age bins",
Formula( If( :age <= 13, "<=13", ">13") )
),
Transform Column(
"cumulative Prob",
Formula(
Col Rank( :height, :"@Exclude"n, :"@Filter"n, :"@Graph"n, :"@Overlay"n )
/ (Col Number(
:height,
:"@Exclude"n,
:"@Filter"n,
:"@Graph"n,
:"@Overlay"n
) + 1)
)
),
Variables(
X( :height ),
Y( :CumProb ),
Wrap( :age bins ),
Overlay( :sex )
),
Elements( Points( X, Y ), Line Of Fit( X, Y ) )
);
I am very happy with the new possibilities.