Looks like a follow up to Life distribution: The failure rate/probability plot does not match with the table
Please have a look at Analyze/Survival:


As an alternative, you can use GraphBuilder. In the Summary Statistics menu you can find "Cumulative Percent" - which uses the Kaplan-Meier definition to calculate the probability. With a trick *), you can even use it for points [fromAdd CDFs to Graph Builder]:

Please note:
for i/N, the last points has a probability of 1 ... and gets lost when probability scales are used on the Y axis - like in the plots in this post. This is why I submitted a wish to add alternative probability functions as an option in Graph Builder:Summary Statistics in Graph Builder - add Cumulative Probability
*)
Graph Builder(
Transform Column( "1", Formula( 1 ) ),
Size( 429, 272 ),
Show Control Panel( 0 ),
Summary Statistic( "Median" ),
Graph Spacing( 4 ),
Variables( X( :Start time ), Y( :"1"n ) ),
Elements(
Points( X, Y, Summary Statistic( "Cumulative Percent" ) ),
Line(
X,
Y,
Connection( "Step" ),
Summary Statistic( "Cumulative Percent" )
)
),
);