cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
  • JMP 19 is here! Learn more about the new features.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
statcon
Level II

Adding Points to a graphbox

Hi,

i created an interaktive graph. Now i need to add points (or more general: geometric shapes) to the graphbox.

This should be done on a mousklick using MouseTrap().

I thought of soemthing like that:

// Ad a marker to the graph at the position where the mouse was pressed

::click = function({x,y},

  ::g << Marker(MarkerState(3), x, y);

  ::g << Circle(x, y, PixelRadius(10));

);

::w = New Window("Test",

  // Some other components (Textboxes...)

  ::g = Graph Box(

                    FrameSize( 300, 300 ),

                    Mousetrap( ::click( x, y ), {} )

          )

);

But sadly this does not work. Is there a way to do something like that?

Thanks for any hints!

1 ACCEPTED SOLUTION

Accepted Solutions
David_Burnham
Super User (Alumni)

Adding Points to a graphbox

A couple of points:

- coordinates are typically expressed in a list or matrix format

- the graphical functions operate within a graphics script

The following should work:

::click = function({x,y},

               pos = {};

               InsertInto(pos,x);

               InsertInto(pos,y);

       ::g[FrameBox(1)] << Add Graphics Script(

                        Marker(Marker State(3), pos) ;

                         Circle(pos, PixelRadius(10));

               )

);

-Dave

-Dave

View solution in original post

2 REPLIES 2
David_Burnham
Super User (Alumni)

Adding Points to a graphbox

A couple of points:

- coordinates are typically expressed in a list or matrix format

- the graphical functions operate within a graphics script

The following should work:

::click = function({x,y},

               pos = {};

               InsertInto(pos,x);

               InsertInto(pos,y);

       ::g[FrameBox(1)] << Add Graphics Script(

                        Marker(Marker State(3), pos) ;

                         Circle(pos, PixelRadius(10));

               )

);

-Dave

-Dave
statcon
Level II

Adding Points to a graphbox

Thanks it works exactly as i need it!

Recommended Articles