AddPolarPlot Method
The AddPolarPlot method adds a 2D polar plot to an existing polar graph, equivalent to Graph | Add to Graph | Plot. Returns an AutoLinePlot object.
Syntax
object.AddPolarPlot( worksheet, rCol, aCol, id )
Parameter | Type | Description |
worksheet | String | required, full path and file name of the data |
rCol | Variant | optional, radius data column, default = 1 (column A) |
aCol | Variant | optional, angle data column, default = 2 (column B) |
id | Variant | optional, plot name |
Remarks
A polar plot can be added to other polar-type plots such as rose diagrams.
Example
This example shows how to add a polar plot.
Graph2.AddPolarPlot(GrapherApp.Path + "\samples\polar1.dat")
Used by: AutoGraph object