Gets or sets the effect of this ChartElement.
Namespace: MindFusion.Charting.Wpf
Assembly: MindFusion.Charting.Wpf
C# Copy Code |
---|
public Effect Effect { get; set; } |
Visual Basic Copy Code |
---|
Public Property Effect As Effect |
An instance of the WPF Effect class.
Currently the control supports BlurEffect and DropShadowEffect.
The following example adds a DropShadowEffect to the series of a surface chart:
C# Copy Code |
---|
series1.Effect = new System.Windows.Media.Effects.DropShadowEffect(); |
Visual Basic Copy Code |
---|
series1.Effect = New System.Windows.Media.Effects.DropShadowEffect() |