void ShowRays( <boolean bShow> )
boolean bShow
If bShow is true, lines are drawn from the center of the bounding cube to each observation marker. If bShow is false, these lines are not drawn. Calling this
method without a parameter is equivalent to calling it with bShow equal to true.
This method controls whether lines are drawn from the center of the bounding cube to each observation marker.
declare DataObject dobj;
dobj = DataObject.CreateFromFile( "baseball" );
declare RotatingPlot plot;
plot = RotatingPlot.Create( dobj, "NO_HITS", "NO_RUNS", "NO_HOME" );
plot.ShowRays();