In some session with @julian I leaned how to make Heatmap Plots more attractive by adding some borders around the cells.
Other options - like the pattern - can be controlled via the Control Panel on the left.
This one unfortunately not - it has to be applied via right Click into the graph/Customize... - and separately for each subplot.
On one hand, this is nice because every subplot can be configures individually - on the other hand: this can take some time.
If there are several open subplots, how can I change all subplots at once - and how can I change the setting, such that (when the data table is updated and new subplots appear the) new subplots start with linewidth=1?
Most of such right Click commands can be broadcasted to all subplots by pressing CTRL.
But for Customize ... this doesn't seem to be possible.
A trick is to remove all subplots by removing columns from Group X/Y, Wrap/Pages, apply the LineWidth and then add the columns again to the respective DropZones. But that takes some time.
Another Trick:
Send the command to all FrameBoxes of the current Graph via JSL.
But then there is still the issue when new Subplots show up (without the borders).
Anybod using Heatmaps with borders around the cells? And recommendations how to facilitate the usage?
Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Graph Builder(
Size( 454, 256 ),
Show Control Panel( 0 ),
Show Legend( 0 ),
Summary Statistic( "Median" ),
Graph Spacing( 4 ),
Variables( X( :height ), Y( :weight ), Group X( :sex ), Overlay( :sex ) ),
Elements( Heatmap( X, Y, Legend( 3 ), Bin Shape( "Hexagonal" ) ) ),
SendToReport(
Dispatch(
{},
"Graph Builder",
FrameBox,
{DispatchSeg( HexSeg( 1 ), Line Width( 1 ) )}
)
)
)