If you right click on the graph, you can Customize the graph, which will allow you to add the graphics you want to the chart.
![cust.PNG cust.PNG](https://community.jmp.com/t5/image/serverpage/image-id/32157iEFC902F759852045/image-dimensions/590x413?v=v2)
Here is what the customization window looks like
![cust2.PNG cust2.PNG](https://community.jmp.com/t5/image/serverpage/image-id/32158iAF31337EC5FABAD3/image-dimensions/591x272?v=v2)
And here is the simple graphic code required
pen color("blue");
pen size(2);
line([.273, .292, .339,.319,.273 ], [.279, .334, .359,.302,.279]);
Marker Size( 5 );
Marker(
color state( blue ),
Marker State( 15 ),
[.273, .292, .339,.319],
[.279, .334, .359,.302]
);
Jim