Gets or sets the effect of this ChartElement.
Namespace: MindFusion.Charting.Wpf
Assembly: MindFusion.Charting.Wpf
SyntaxC#
Copy Code
|
|---|
public Effect Effect { get; set; } |
Visual Basic
Copy Code
|
|---|
Public Property Effect As Effect |
An instance of the WPF Effect class.
RemarksCurrently the control supports BlurEffect and DropShadowEffect.
ExampleThe 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() |
See Also