<< Click to Display Table of Contents >> ChartDataSetPointType |
[VCL only]
If you create a Point Chart from the Chart Data, you can specify individual point styles for each column with this method.
method void VPE.ChartDataSetPointType(
pointer hData,
long Column,
ChartSymbol [long] PointType
)
pointer hData
handle to ChartData object
long Column
column the color shall be assigned to
ChartSymbol [long] PointType
possible values are:
ActiveX / VCL |
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:
Doc.ChartDataSetPointType(hData, 0, VCHART_SYMBOL_SQUARE)