San,
Nice job. The only thing that I might do is to change the Caption Boxes to make them a little more visable. You can easily do this by Right Clicking on the graph, and then selecting "Customize...".
If you select the "Text" entry, you can change the font, color, size, etc. You have to do it once for each side of the graph.
You can then Save the Script and it will give you the JSL that changed the Caption Boxes
Graph Builder(
Size( 1172, 872 ),
Variables( X( :weight ), Group X( :sex ), Overlay( :sex ) ),
Elements(
Histogram( X, Legend( 4 ) ),
Caption Box( X, Legend( 5 ), Summary Statistic( "Sum" ) )
),
Local Data Filter(
Add Filter( columns( :height ), Where( :height >= 51 & :height <= 70 ) )
),
SendToReport(
Dispatch(
{},
"weight",
ScaleBox,
{Min( 60 ), Max( 180 ), Inc( 200 ), Minor Ticks( 0 )}
),
Dispatch(
{},
"Graph Builder",
FrameBox,
{DispatchSeg( TextSeg( 1 ), {Font( "Showcard Gothic", 14, "Bold" )} )}
),
Dispatch(
{},
"Graph Builder",
FrameBox( 2 ),
{DispatchSeg( TextSeg( 1 ), {Font( "Segoe UI", 14, "Bold" )} )}
)
)
);
Jim