Version

Effects Property (UltraChart)

Contains the Effects collection and other appearance properties relevant to visual effects.
Syntax
'Declaration
 
Public ReadOnly Property Effects As EffectsAppearance
public EffectsAppearance Effects {get;}
Example
Imports Infragistics.UltraChart.Resources.Appearance
Imports Infragistics.UltraChart.Shared.Styles

' ...

Dim gradientEffect1 As New GradientEffect()
Dim shadowEffect1 As New ShadowEffect()
Dim textureEffect1 As New TextureEffect()
gradientEffect1.Coloring = GradientColoringStyle.Lighten
gradientEffect1.Style = GradientStyle.ForwardDiagonal
shadowEffect1.Angle = 45
shadowEffect1.Color = System.Drawing.Color.DimGray
textureEffect1.Texture = TexturePresets.Canvas
Me.ultraChart1.Effects.Add(gradientEffect1)
Me.ultraChart1.Effects.Add(shadowEffect1)
Me.ultraChart1.Effects.Add(textureEffect1)
using Infragistics.UltraChart.Resources.Appearance;
using Infragistics.UltraChart.Shared.Styles;

// ...

GradientEffect gradientEffect1 = new GradientEffect();
ShadowEffect shadowEffect1 = new ShadowEffect();
TextureEffect textureEffect1 = new TextureEffect();
gradientEffect1.Coloring = GradientColoringStyle.Lighten;
gradientEffect1.Style = GradientStyle.ForwardDiagonal;
shadowEffect1.Angle = 45;
shadowEffect1.Color = System.Drawing.Color.DimGray;
textureEffect1.Texture = TexturePresets.Canvas;
this.ultraChart1.Effects.Add(gradientEffect1);
this.ultraChart1.Effects.Add(shadowEffect1);
this.ultraChart1.Effects.Add(textureEffect1);
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also