cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
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" )