void ShowSerifs( <boolean bShow> )
boolean bShow
If bShow is true, the serifs are displayed. If bShow is false, the serifs are hidden. Calling this method without a parameter is equivalent to calling it with
bShow equal to true.
This method shows or hides the serifs. Serifs are line segments drawn at the ends of the whiskers.
gender = { M M M M M M M M M M F F F F F F F F F F }; height = { 58 59 60 52 54 56 59 64 57 58 63 62 59 61 59 58 54 58 53 56 }; declare DataObject dobj = DataObject.Create( "Student Height" ); dobj.AddVar( "Gender", "Gender", gender ); dobj.AddVar( "Height", "Height", height ); declare BoxPlot plot; plot = BoxPlot.Create( dobj, "Gender", "Height" ); plot.ShowSerifs();