cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP Wish List

We want to hear your ideas for improving JMP software.

  1. Search: Please search for an existing idea first before submitting a new idea.
  2. Submit: Post your new idea using the Suggest an Idea button. Please submit one actionable idea per post rather than a single post with multiple ideas.
  3. Kudo & Comment Kudo ideas you like, and comment to add to an idea.
  4. Subscribe: Follow the status of ideas you like. Refer to status definitions to understand where an idea is in its lifecycle. (You are automatically subscribed to ideas you've submitted or commented on.)

We consider several factors when looking for what ideas to add to JMP. This includes what will have the greatest benefit to our customers based on scope, needs and current resources. Product ideas help us decide what features to work on next. Additionally, we often look to ideas for inspiration on how to add value to developments already in our pipeline or enhancements to new or existing features.

Choose Language Hide Translation Bar

Make Graph Builder's color to obey Value Color column property even if same color is used for multiple values

Make graph builder's Color obey Value Color column property even when same color is chosen for multiple values. When using overlay the colors are as they are set in column properties.

 

Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Probe.jmp");
dt << Clear Row States;
Column(dt, "Site") << Set Property("Value Colors", {1 = 16, 2 = 16, 3 = 16, 4 = 16, 5 = 22});

gb_color = dt << Graph Builder(
	Size(530, 459),
	Show Control Panel(0),
	Variables(X(:Start Time), Y(:DELW_PCOLL), Color(:Site)),
	Elements(Points(X, Y, Legend(3)))
);

gb_overlay = dt << Graph Builder(
	Size(530, 459),
	Show Control Panel(0),
	Variables(X(:Start Time), Y(:DELW_PCOLL), Overlay(:Site)),
	Elements(Points(X, Y, Legend(3)))
);

 

image.png

Currently I use a workaround where I create new column in which I group the columns and set value colors to that column. It does work but it is unnecessary extra step and prevents be from interactively selecting different values based on the legend.

4 Comments
Status changed to: Acknowledged

Hi @jthi, thank you for your suggestion! We have captured your request and will take it under consideration.

Status changed to: Investigating
 
Status changed to: Yes, Stay Tuned!

@jthi Thank you for submitting your wish! We hope to include this in the next major release of JMP! Be on the lookout.

hogi
Level XI

Thanks