MindFusion.Charting Programmer's Guide

AxesChart.AxisShadowBrush Property

See Also
 





Gets or sets the brush, which is used when drawing the shadow of the chart axes.

Namespace: MindFusion.Charting.WebForms
Assembly: MindFusion.Charting.WebForms

 Syntax

C#  Copy Code

public Brush AxisShadowBrush { get; set; }

Visual Basic  Copy Code

Public Property AxisShadowBrush As Brush

 Property Value

An object of type MindFusion.Drawing.Brush class.

 Remarks

The property specifies the brush for drawing axes shadows in 3D charts. 

Axes are drawn with shadows when the type of the chart (LineType, BarType) is set to a 3D chart and Depth3D is greater than 0. If the chart has multiple series, its shadow is drawn larger so that all series could fit in.

Default value for the AxisShadowBrush property is a semitransparent SolidBrush with alpha value 100 and color equal to the color of the AxisPen.

 See Also