ICustomSeries.Dark3D
ICustomSeries

property Dark3D: WordBool;

Type Library
TeeChartx

Description
Default = True

The Dark3D property colours the parts of a 3D Line series which give it depth a darker shade then the rest of the series.

Example [Visual Basic]:

Private Sub Command1_Click()

TChart1.Series(0).asLine.Dark3D = Not TChart1.Series(0).asLine.Dark3D

End Sub

Private Sub Form_Load()

With TChart1

.AddSeries scLine

.Series(0).FillSampleValues 10

.Aspect.Chart3DPercent = 100

.Series(0).Color = vbYellow

End With

End Sub