cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar

How to update the graph in Journal if the data changed ?

hello, I am new to JMP journal. I have a simple question as below when I start to use journal.

 

an example data and graph,

ChernoffTurtle7_0-1702610609493.png

ChernoffTurtle7_2-1702610677695.pngChernoffTurtle7_3-1702610727799.png

 

Next, the data is changed, and I want this graph in journal could be changed accordingly. How to make it happen in a easy way?

ChernoffTurtle7_4-1702610925616.png

ChernoffTurtle7_5-1702610962510.png

 

 

1 REPLY 1
txnelson
Super User

Re: How to update the graph in Journal if the data changed ?

The only way I know to do this, is to run the platform from within the Journal window

Names Default To Here( 1 );
New Window( "active journal",
	<<journal,
	Graph Builder(
		Variables( X( :Group ), Y( :Quantity ) ),
		Elements( Bar( X, Y, Legend( 4 ) ) )
	)
);
Jim