This question is locked. New answers and comments are not allowed.
I have a very simple radChart and I am attempting to set the Fill Type to Gradient and use two KnownColors as the Main and Secondary Color. I have tried to do this progamatically and through the property panel. When setting the property in the property panel from Solid to Gradient it immediately goes back to gradient, however I am able to set it to hatched. Here is the code I am using. The is still solid white. Any help would be greatly appreciated.
Thank you,
Will
KnownColor clrTopBackgroundColor = KnownColor.White;
KnownColor clrBottomBackgroundColor = KnownColor.LightBlue;
radChart1.PlotArea.Appearance.FillStyle.FillType = FillType.Gradient;
radChart1.PlotArea.Appearance.FillStyle.MainColor = Color.FromKnownColor(clrTopBackgroundColor);
radChart1.PlotArea.Appearance.FillStyle.SecondColor = Color.FromKnownColor(clrBottomBackgroundColor);
radChart1.Update();
radChart1.UpdateGraphics();
Thank you,
Will