<< Click to Display Table of Contents >> VpeChartDataSetLineStyle |
With this method you can specify individual line styles for each column.
void VpeChartDataSetLineStyle(
VpeHandle hDoc,
VpeHandle hData,
int column,
int pen_style
)
VpeHandle hDoc
Document Handle
VpeHandle hData
handle of ChartData object
int column
column the line style shall be assigned to
int pen_style
one of the windows pen styles; possible values are:
Constant Name |
Value |
Comment |
psSolid |
0 |
|
psDash |
1 |
------- |
psDot |
2 |
........ |
psDashDot |
3 |
_._._._ |
psDashDotDot |
4 |
_.._.._ |
Default:
PS_SOLID
Example:
VpeChartDataSetLineStyle(hDoc, hData, 0, PS_SOLID)