JMP allows for one to add graphics to any of the graphs and plots generated in JMP. Here is an example taken from the Scripting Index
![txnelson_0-1633074257852.png txnelson_0-1633074257852.png](https://community.jmp.com/t5/image/serverpage/image-id/36214i66D3EC27D85BD8F3/image-size/medium?v=v2&px=400)
A complete set of graphic primitives' are available Here is a listing taken from the Scripting Index
![txnelson_1-1633074551512.png txnelson_1-1633074551512.png](https://community.jmp.com/t5/image/serverpage/image-id/36215i04FFAFB7F0C90B6A/image-dimensions/734x640?v=v2)
Here is the script that generated the above graph
Names Default To Here( 1 );
Open( "$SAMPLE_DATA/Big Class.jmp" );
biv = Bivariate( Y( :weight ), X( :height ), FitLine );
rbiv = biv << report;
framebox = rbiv[frame box( 1 )];
framebox <<
Add Graphics Script(
Transparency( 0.5 );
Fill Color( {1.0, 0.5, 0.0} );
Polygon( [60, 72, 57], [75, 120, 120] );
);
Jim