AddPolarVectorPlot Method
The AddPolarVectorPlot method adds a new polar vector plot to an existing polar graph, equivalent to Graph | Add to Graph | Plot. Returns an AutoPolarVectorPlot object.
Syntax
object.AddPolarVectorPlot( worksheet, a1Col, r1Col, a2Col,r2Col, Type, id )
Parameter | Type | Description |
worksheet | string | required |
a1Col | variant | optional, default = 1 (column A) |
r1Col | variant | optional, default = 2 (column B) |
a2Col | variant | optional, default = 3 (column C) |
r2Col | variant | optional, default = 4 (column D) |
Type | variant | optional; type of polar vector; grfPolarVectorPlotType |
id | variant | optional, plot name |
Example
This example shows how to add a polar vector plot to an existing polar graph.
Graph.AddPolarVectorPlot(GrapherApp.Path + "\Samples\polar data.dat",1,2,3,4,grfPolarVectorARAR)
Used by: AutoGraph object