cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • See how to use JMP Pro to analyze and predict using entire data set rather than selected points in a curve. Register for Nov. 6 Mastering JMP.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
saitcopuroglu
Level IV

Graph Builder Page Option Horizontal instead of Vertical

Is there a way to display Graph Builder Page Output horizontal instead of vertical? Or anything like "arrange in rows" option?

Thank you all in advance!

8661_Screen Shot 2015-04-27 at 00.39.52.png8661_Screen Shot 2015-04-27 at 00.39.52.png

Graph Builder(

    Size( 748, 933 ),

    Show Control Panel( 0 ),

    Y Group Edge( "Left" ),

    Back Color( {183, 207, 219} ),

    Title Fill Color( {178, 34, 36} ),

    Title Frame Color( {178, 34, 36} ),

    Level Fill Color( {202, 129, 130} ),

    Level Frame Color( {178, 34, 36} ),

    Level Underline( 1 ),

    Page Level Fill Color( {122, 129, 165} ),

    Page Level Frame Color( "Medium Light Gray" ),

    Page Level Underline( 1 ),

    Variables(

        X( :Label ),

        Y( :Contract ),

        Page( :Resort, Show Title( 0 ) ),

        Color( :Data )

    ),

    Elements( Heatmap( X, Y, Legend( 41 ) ), Points( X, Y, Legend( 40 ) ) ),

    Local Data Filter(

        Mode( Show( 0 ) ),

        Add Filter(

            columns( :Resort ),

            Where( :Resort == {"ISLAND", "BLANCHE"} ),

            Display( :Resort, Size( 112, 40 ), Check Box Display )

        )

    ),

    SendToReport(

        Dispatch(

            {},

            "Graph Builder",

            OutlineBox,

            {Set Title( "Measurement Of Completion [Market]" )}

        ),

        Dispatch(

            {},

            "Contract",

            ScaleBox,

            {Reversed Scale, Label Row( Tick Mark Style( "Long Divider" ) )}

        ),

        Dispatch( {}, "Contract", ScaleBox( 2 ), {Reversed Scale} ),

        Dispatch(

            {},

            "400",

            ScaleBox,

            {Legend Model(

                41,

                Properties(

                    0,

                    {gradient(

                        {Color Theme( "White to Red" ), Scale Values( [0 0.5 1] ),

                        Width( 9 )}

                    )}

                )

            ), Legend Model(

                40,

                Properties(

                    0,

                    {gradient(

                        {Color Theme( "White to Red" ),

                        Scale Values( [0 0.3 0.007] ), Width( 9 ),

                        Reverse Gradient( 1 )}

                    )}

                )

            )}

        ),

        Dispatch( {}, "graph title", TextEditBox, {Set Text( "" )} ),

        Dispatch( {}, "400", LegendBox, {Position( {0, 1, 2} )} ),

        Dispatch( {}, "Y title", TextEditBox, {Set Text( "" )} )

    )

);


2 REPLIES 2
XanGregg
Staff

Re: Graph Builder Page Option Horizontal instead of Vertical

There's no horizontal layout option for the Page role. If it's a question of graph size, you can turn off Fit to Window and use a Group X variable for horizontal layout.

hogi
Level XIII

Re: Graph Builder Page Option Horizontal instead of Vertical

Recommended Articles