*SetThickLineLimit()

Sets the point at which all curves are drawn with the thin line style.

Syntax

*SetThickLineLimit (num_pts)

Application

HyperGraph

Inputs

num_pts
Setting the parameter to "0" draws all lines as selected.
If the parameter is an integer, all curves with more than that many points are drawn as thin lines.

Context

*BeginDefaults()

*BeginPlotDefaults()

Example

*BeginDefaults()
    *BeginPlotDefaults()
        *SetThickLineLimit(100000)
    *EndPlotDefaults()
*EndDefaults()