Visit Gigasoft's Web Site
 ProEssentials v9 Help

PointsToGraphVersion

Scope

Graph Object.

Type

Int32

Default

PEPTGV_SEQUENTIAL

Custom

PEP_nCPOINTSTOGRAPHVERSION

Ocx|Vcl

PointsToGraphVersion

DLL

PEP_nPOINTSTOGRAPHVERSION

 

Purpose

This property controls whether point information is displayed sequentially or randomly. Sequential points represent a subset of point information sized by the PointsToGraph property. Random points are defined by the property array RandomPointsToGraph.

 

Possible values are defined by the following constants:

 

Constant

Description

PEPTGV_SEQUENTIAL(0)

Points are displayed sequentially.

PEPTGV_RANDOM(1)

Random points are displayed.

 

Comments

.NET developers, note that this WinForm/WebForm interfaces are missing this property.

 

The for example, to plot only the first, third, and fifth data points.

 

'** 3315 is constant for PointsToGraphVersion property

'** 1 for Random for PEPTGV_RANDOM(1)

Gigasoft.ProEssentials.Api.PEnset(Pego1.PeSpecial.HObject, 3315, 1)

Pego1.PeData.RandomPointsToGraph(0) = 0

Pego1.PeData.RandomPointsToGraph(1) = 2

Pego1.PeData.RandomPointsToGraph(2) = 4