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" ), )
);