Visit Gigasoft's Web Site
 ProEssentials v9 Help

SpecificPlotMode

Scope

Pego, Pesgo

Type

Int32

Default

PESPM_NONE

.NET

PePlot.SpecificPlotMode

Ocx|Vcl

SpecificPlotMode

DLL

PEP_nSPECIFICPLOTMODE

 

Purpose

The Graph Object has complex plotting methods (PlottingMethod) which require multiple subsets. These types of plotting methods are called Specific Plotting Methods. The following constants tell the Graph Object whether a Specific Plotting Method is being graphed and of what type.

 

.NET Gigasoft.Enums.

ActiveX and

 

SpecificPlotMode.

DLL Constants

Description

None

PESPM_NONE(0)

No Specific Plotting Method.

HighLowBar

PESPM_HLBAR(1)

Two subsets representing BarStart - BarEnd.

HighLowLine

PESPM_HLLINE(2)

Two subsets representing LineStart - LineEnd.

HighLowClose

PESPM_HLC(3)

Three subsets representing LineStart - LineEnd - Close.

OpenHighLowClose

PESPM_OHLC(4)

Four subsets representing LineStart - LineEnd - Open - Close.

BoxPlot

PESPM_BOX(5)

Four subsets representing LineStart - LineEnd - BoxStart - BoxEnd.

HighLowArea

PESPM_HIGHLOWAREA(6)

Two subsets representing an upper and lower layer/threshold. If first subset is larger than second subset, uses first subset color, else, uses second subset color.

 

Graph VCL Enumerations

eSpecificPlotMode = (gNormal, gHighLowBar, gHighLowLine, gHighLowClose, gOpenHighLowClose, gBoxPlot);

 

Scientific Graph VCL Enumerations

eSpecificPlotMode = (sgNormal, sgHighLowBar, sgHighLowLine, sgHighLowClose, sgOpenHighLowClose, sgBoxPlot);

 

Comments

PePlot.SpecificPlotMode members of Pego.PePlot, Pesgo.PePlot

 

The subsets should be ordered as described in the above Description section.

 

The Specific Plotting Method is only displayed when PlottingMethod equals PEGPM_SPECIFICPLOTMODE.

 

For the Box Plot method you can reverse the order of BoxStart and BoxEnd subsets. This changes the polarity of whether the Box is filled or not-filled.

 

See Also: SpecificPlotModeColor

 

For more information, see Chapter 7, Question 13.