AddBoxWhiskerGraph2 Method
The AddBoxWhiskerGraph2 method creates a new vertical or horizontal box-whisker plot. Returns an AutoGraph object.
Syntax
object.AddBoxWhiskerGraph2( worksheet, firstCol, lastCol, Notched, horz, id )
| Parameter | Type | Description |
| worksheet | String | required, full path and file name of the data |
| firstCol | Variant | optional, default = 1 (column A) |
| lastCol | Variant | optional, default = 2 (column B) |
| Notched | Variant | optional, default = False, True to create notched box-whisker plot |
| horz | Variant | optional, default = False, True to create horizontal box-whisker plot |
| id | Variant | optional, graph name |
Example
This example shows how to create a horizontal box-whisker graph.
Shapes.AddBoxWhiskerGraph2(GrapherApp.Path + "\samples\box plot.dat",1,6, False, True, "Box2" )
Used by: AutoShapes collection