cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
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.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" )