VpeChartDataSetPointType

<< Click to Display Table of Contents >>

Navigation:  Charts >

VpeChartDataSetPointType

Previous pageReturn to chapter overviewNext page

If you create a Point Chart from the ChartData, you can specify individual point styles for each column with this method.

void VpeChartDataSetPointType(

VpeHandle hDoc,

VpeHandle hData,

int column,

int pointtype

)

VpeHandle hDoc

Document Handle

VpeHandle hData

handle of ChartData object

int column

column the color shall be assigned to

int pointtype

possible values are:

Constant Name

Value

Comment

VCHART_SYMBOL_NONE

-1

 

VCHART_SYMBOL_SQUARE

0

 

VCHART_SYMBOL_TRIANGLE

1

 

VCHART_SYMBOL_CIRCLE

2

 

VCHART_SYMBOL_CROSS

3

 

VCHART_SYMBOL_X

4

 

VCHART_SYMBOL_POINT

5

 

Default:

VCHART_SYMBOL_X

Example:

VpeChartDataSetPointType(hDoc, hData, 0, VCHART_SYMBOL_SQUARE)