NumberPts Property

The NumberPts property returns or sets the number of points to be displayed in a fit, function, or math plot. Returns a Long.

Syntax

object.NumberPts

object.NumberPts = NumberPts

 

Parameter Type Description
NumberPts Long required, number of points

 

Example 1

This example shows how to set the number of points for a fit curve.

FitLinear.NumberPts = 400

Example 2

This example shows how to return the number of points for a fit curve.

Debug.Print FitLinear.NumberPts

Example 3

This example shows how to set the number of points for a summation plot.

MathPlot.NumberPts = 2000

 

Used by: AutoFitPlot object, AutoFunctionPlot object, AutoMathPlot object