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 design an experiment, explore factor-response relationships, assess tradeoffs, and ID best settings. Register for Sep. 11 Mastering JMP.

Discussions

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

Customizing the title of a set of plots

I currently have a script to produce the following plot. The call that finally produces it looks like this:

chart = Bivariate( Y( :Log10 Reads , :Log10 Writes ), X( :Bin ), Nonpar Density,

  Send To Report(

  Dispatch( {}, "Bivar Plot", Framebox, {Frame Size(plotWidth, plotHeight)}),

  Dispatch({}, "1", ScaleBox, {Format("Best", 10), Min(xMin), Max(xMax), Inc(xInc),

                                 Minor Ticks(1), Rotated Labels("Horizontal")}),

  Dispatch({}, "2", ScaleBox, {Format("Best", 10), Min(yMin), Max(yMax), Inc(yInc),

                                 Minor Ticks(1), Rotated Labels("Horizontal")})

  )

);

My question is simply, how do I programmatically change the title of the grouping of bivariate plots (circled below) to something customized and more descriptive?

4913_Bivariate.jpg4913_Bivariate.jpg

1 ACCEPTED SOLUTION

Accepted Solutions
ms
Super User (Alumni) ms
Super User (Alumni)

Re: Customizing the title of a set of plots

If the report is the top open report this should work:

Current Report()[Outline Box( 1 )] << set title( "my plots" )

View solution in original post

1 REPLY 1
ms
Super User (Alumni) ms
Super User (Alumni)

Re: Customizing the title of a set of plots

If the report is the top open report this should work:

Current Report()[Outline Box( 1 )] << set title( "my plots" )

Recommended Articles