Hi @Jordan_Hiller , it was nice to meet you at the Discovery Summit 2025 (online)
An issue I still suffer with:
How to assign colors to line plots, especially when line is used in combination with smoother:
Graph Builder. Combine Smoother and Line - how?

I wished this option was available in JMP: Graph Builder: Line - possibility to add breaks
Hm ...
Here is another interesting task - transferred to Big Class:
- I want to apply colour to a large number of curves.
So, let's use the students of big class and plot name (39 values!) on the x-axis.
Imagine that the bars are actually line plots in different colors.
- I don't want to see all the data at once, but "zap" through the data - age by age
so let's add a data filter to restrict the view to a specific age
- The task: In this view, every (visible) student should be represented by a unique color.
please remember: the bar graph will be complicated curves. So, we don't want 2 curves in a plot with the same color.
We can use the new col score() which was introduced in JMP19:New in Graph Builder for JMP 19
so helpful! - so easy to use! - a huge benefit!
We sort the students within an age group alphabetically
[ the 1st students are: Jaclyn (age:12), Alice (age: 13) , the second ones: James & Barbara ...]
This Score can be used to assign a unique color: different score - different color.
Now, when we cycle through the age groups, we see:
no duplicate colors in any of the age groups
(indeed, we can use a better color scale with more distinct colors : )

So far: great! Now, let's address the problem.
For this plot, you can disable the legend as it provides little benefit — it just shows the value of the auxiliary column 'col score'.
Here, the students are clearly visible on the x-axis.
However, this is just a dummy graph. In reality, the x-axis has to be used for a continuous variable and, instead of boring bar graphs, we have complicated curves. The only way to identify the 'students' is via the legend.
So, how can the color settings be transferred from the auxiliary column 'col score' to the 'name' column, such that the legend makes sense?
Any suggestions or alternatives are highly welcome.
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class Families.jmp" );
dt << New Formula Column(
Operation( Category( "Aggregate" ), "Score Unique" ),
Columns( :name ),
Group By( :age )
);
Graph Builder(
Variables( X( :name ), Color( :"Score Unique[name][age]"n ) ),
Elements( Bar( X, Legend( 3 ) ) ),
Local Data Filter( Add Filter( columns( :age ), Where( :age == 12 ) ) )
);