cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
Choose Language Hide Translation Bar
tom_abramov
Level V

Reset row colors and markers by script

Hi,

I am using JMP 12.2. Pro.

How can I reset all row colors to default (black)

and all row markers as well.

Actually, I need to cancel the colors and markers of Legend I've made.

Another question - after choosing another column for legend, how can I delete StringColBox of the previous Legend?

All the actions I would like to run in JSL.

 

Thanks,

Tom.

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Reset row colors and markers by script

Send the message to the data table object:

 

Current Data Table() << Clear Row States;

Alternatively, select all the rows and then send the specific messages:

 

Current Data Table()
	<< Select All Rows
	<< Colors( "Black" )
	<< Markers( "Dot" )
	<< Clear Select;

I am not sure what you are asking in your last question.

View solution in original post

1 REPLY 1

Re: Reset row colors and markers by script

Send the message to the data table object:

 

Current Data Table() << Clear Row States;

Alternatively, select all the rows and then send the specific messages:

 

Current Data Table()
	<< Select All Rows
	<< Colors( "Black" )
	<< Markers( "Dot" )
	<< Clear Select;

I am not sure what you are asking in your last question.