Solution 2: Value Colors
For graph elements that don't usually correspond to individual rows, such as bar charts and treemaps, the row colors won't help. However, we can a Value Colors property to the color column and use it in the Color role in Graph Builder, those colors will be used in the graph. To create a Value Colors column property programmatically, first create a test Value Colors property and do a Copy Table Script on the data table to see how JMP records the Values Colors as JSL. You'll see something like this:
...
Set Property( "Value Colors",
{"#000000" = -5425372, "#003399" = -13577875, "#004899" = -4354269,
"#0063aa" = -13400361, "#006fba" = -2668175, "#0070bc" = -10628061,
...})
In each assignment, the lefthand side is the data value and the righthand side is the JSL number representation of a color value, same as the result of the RGB Color() function.
So our task is to create such an expression programmatically using JSL expressions and then send it to the data table to set the property with the Add Column Properties() message.
Here is my code:
eadd = Expr(
Column( "color" ) << Add Column Properties( Set Property( "Value Colors", LLL ) )
);
evc = {};
ec = Expr( SSS = CCC );
For Each Row(
ec2 = Substitute( Name Expr( ec ),
Expr( SSS ), :color,
Expr( CCC ),
RGB Color(
Hex To Number( Substr( :color, 2, 2 ) ),
Hex To Number( Substr( :color, 4, 2 ) ),
Hex To Number( Substr( :color, 6, 2 ) )
)
);
Insert Into( evc, Name Expr( ec2 ) );
);
Substitute Into( eadd, Expr( LLL ), Name Expr( evc ) );
eadd;
By convention, I'm prefixing the expression variables with "e" and using uppercase for the substitution patterns. The basic idea is to make a expression with the basic form using placeholders, and then use Substitute to replace the placeholders with computed values. But here, there are two levels of substitution going on. One for the command, eadd, which has the LLL placeholder for the list of value colors, and one for each assignment, ec, which has placeholders SSS and CCC for the string and the color.