cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Use World Cup data to build models, explore spatial relationships, and create informative visualizations in JMP. Register. July 17, 2 pm US Eastern Time.
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

Discussions

Solve problems, and share tips and tricks with other JMP users.
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.

Recommended Articles