How do I change graph builder color in JSL?
Hi all,
I made several Graph Builders below with JSL.
This is the syntax for dividing colors based on the column :XX.
But when I made several graphs, all of them came out the same color as "blue."
I want to give different colors for each graph builder, what options are available?
gb1 = dt <<
Graph Builder(
Size( 1200, 600 ),
Variables(
X( :A1, Position( 1 ) ),
Y( :Y ),
Color( :XX )
)
);
...
gav2013