cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

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