Hi,
I am a relatively new JMP and JSL user, and I'm trying to produce a report with multiple graphs. I want to link the x-axis of both graphs together, so that when one x-axis is scaled or otherwise changed (reference line added, etc.), the other axis changes as well.
Some of the built-in platforms already do this, such as the Control Chart, which links the x-axis for the "Individual Measurement" and "Moving Range" graphs.
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << Control Chart( Chart Col( Height, "Individual
Measurement", "Moving Range" ), K Sigma( 3 ) );
How can I reproduce this for my own reports/custom platforms/etc.? I haven't been able to figure out how the Control Chart report is accomplishing this, despite looking at the tree structure and the properties for the display boxes.
For example, how could I link the two x-axis in the following report using JSL?
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << Distribution(
Stack( 1 ),
Continuous Distribution(
Column( :height ),
Horizontal Layout( 1 ),
Vertical( 0 ),
Count Axis( 1 )
),
By( :sex )
);
I am using JMP 13.2.
Thanks!