Visit Gigasoft's Web Site
 ProEssentials v9 Help

SubsetForPointColors

Scope

Pego, Pesgo, Pe3do, Pepso

Type

Property Array of type Int32

Default

Empty

.NET

PePlot.SubsetForPointColors

Ocx|Vcl

SubsetForPointColors

DLL

PEP_naSUBSETFORPOINTCOLORS

 

Purpose

This property will determine which subset indices use PointColors and which use the default color defined by the SubsetColors property.

 

Comments

PePlot.SubsetForPointColors members of Pego.PePlot, Pesgo.PePlot, Pe3do.PePlot, Pepso.PePlot

 

Within the demo, see example 133.

 

The following examples show how to use PointColors on the 3rd and 5th subsets . All other subsets will be colored with SubsetColors.

 

OCX Example

 

PEGraph1.SubsetForPointColors(0) = 2 'third subset

PEGraph1.SubsetForPointColors(1) = 4 'fifth subset

 

VCL Example

 

PEGraph1.SubsetForPointColors[0] := 2; {third subset}

PEGraph1.SubsetForPointColors[1] := 4; {fifth subset}

 

C / C++ Example

 

int nArray[2];

nArray[0] = 2; // third subset

nArray[1] = 4; // fifth subset

PEvset (hWndPE, PEP_naSUBSETFORPOINTCOLORS, nArray, 2)