Darkens parts of 3D Line Series to add depth.
public Boolean Dark3D {get; set;}

Remarks


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


private void Form1_Load(object sender, System.EventArgs e) 
{
     Steema.TeeChart.Styles.Line Series1 = new Steema.TeeChart.Styles.Line();
     tChart1.Series.Add(Series1);
     Series1.FillSampleValues(25);
     tChart1.Aspect.View3D = true;
     tChart1.Aspect.Chart3DPercent = 100;
     Series1.Color = Color.Yellow;
}

private void button1_Click_1(object sender, System.EventArgs e)
{
     ((Steema.TeeChart.Styles.Line)tChart1[0]).Dark3D = !((Steema.TeeChart.Styles.Line)tChart1[0]).Dark3D;
}

See Also

Custom Class | Custom Members | Steema.TeeChart.Styles Namespace