Plot.ShowFrame

Prototypes

void ShowFrame( <boolean bShow> )

Parameters

boolean bShow
If bShow is true, the frame around the Plot Area is displayed. If bShow is false, the frame is hidden. Calling this method without a parameter is equivalent to calling it with bShow equal to true.

Remarks

This method shows or hides the framing box surrounding the Plot Area.

Example
x = { 1 2 3 4 5 6 7 8 };
y = { 2 1 4 5 6 5 6 9 };
declare ScatterPlot plot = ScatterPlot.Create( "Sample Data", x, y );
plot.ShowFrame( false );