*PolarTipTailFormat()
Specifies the TipToTail curve format of the polar plot.
Syntax
*PolarTipTailFormat (selection_method, tiptail_count, tiptail_style, tiptail_thickness)
Application
HyperGraph
Inputs
- selection_method
 - Determines the selection method of vectors for the TipToTail curve in the current
            polar plot.
- None
 - None of the vectors is selected. Manual selection is not allowed.
 - All
 - All vectors are selected. Manual selection is not allowed.
 - Displayed
 - Based only on the displayed vectors, you can select vectors manually.
 - Selected
 - Based on all the vectors of the plot, you can select the vectors to be included in the calculation.
 
 - tiptail_count
 - The number of vectors included in the TipToTail curve.
 - tiptail_style
 - A number between 0 and 5 that specifies a line style for the TipToTail curve.
 - tiptail_thickness
 - A number between 0 and 3 that specifies the line thickness for the TipToTail curve.
 
Example
*BeginPlot()
    *PlotType(3)
    *PolarType(Vector)
    *PolarDataFormat(PhaseMagnitude)
    *PolarTipTailFormat(All, 2, 4, 2)
    *BeginPlotHeader(On)
             …
*EndPlot()
      Comments
This statement can be used in a Report Definition file.