IPointer.Dark3D
IPointer
property Dark3D: WordBool;
Type Library
TeeChartx
Description
The Dark3D property shades the 3D Depth of an IPointer shape a darker shade than the rest of the IPointer colour.
Example [Visual Basic]:
Private Sub Command1_Click()
TChart1.Series(0).asPoint.Pointer.Dark3D = Not TChart1.Series(0).asPoint.Pointer.Dark3D
End Sub
Private Sub Form_Load()
With TChart1
.AddSeries scPoint
.Series(0).FillSampleValues 10
.Series(0).asPoint.Pointer.Style = psTriangle
End With
End Sub