I used the Bubble Plot platform...
//Create a table with the drawing points, repeat that origin (start and finish)
drawDT = New Table( "Draw Plot",
Add Rows( 6 ),
//Set the values for the coordinates to the table
New Column( "X", Numeric, "Continuous", Format( "Best", 12 ), Set Values( [0, 0.3, 0.7, 1, 0.4, 0] ) ),
New Column( "Y", Numeric, "Continuous", Format( "Best", 12 ), Set Values( [0, 0.9, 1, 0.1, 0.3, 0] ) ),
New Column( "Draw Order", Numeric, "Continuous", Format( "Best", 12 ), Set Values( [1, 2, 3, 4, 5, 6] ) )
);
//Create a new window with bubble plot
New Window( "Draw Plot",
//On close of the window, the data table is deleted
<<on close( Close( drawDT ) ),
Bubble Plot( X( :X ), Y( :Y ), Time( :Draw Order ), Time Index( 6 ), Trail Bubbles( "All" ), Trail Lines( "All" ), )
);
![8065_Screen Shot 2015-02-19 at 7.54.34 PM.png 8065_Screen Shot 2015-02-19 at 7.54.34 PM.png](https://community.jmp.com/t5/image/serverpage/image-id/1241iF81B8C8B23D18509/image-size/medium?v=v2&px=400)