Use this function to apply a gradient fill effect. Note that this function will
also change the current Mapping.
The following example sets a gradient to the left chart wall:
Dim chart As Chart = CType((ChartControl1.Charts(0)), Chart)
Dim fillEffect As FillEffectBase = chart.Wall(ChartWallType.Left).FillEffect
fillEffect.SetGradient(GradientStyle.DiagonalDown, GradientVariant.Variant1, Color.Beige, Color.AntiqueWhite)
Chart chart = (Chart)(ChartControl1.Charts[0]);
FillEffectBase fillEffect = chart.Wall(ChartWallType.Left).FillEffect;
fillEffect.SetGradient(GradientStyle.DiagonalDown, GradientVariant.Variant1, Color.Beige, Color.AntiqueWhite);
Target Platforms: 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