This question is locked. New answers and comments are not allowed.
I am trying to change the skin of my graph programatically. First, I use a radCarousel to select a skin. The skin name is then passed on using the following code:
radChart1.Skin = e.SkinName; |
radChart1.Refresh(); |
e.SkinName is a string of the skin name passed down from another form.
The first time I change it, the graph background changes, but nothing happens to the plot area. After that, nothing happens at all. I have debugged and found no problems with passing the value through the event, as e.SkinName still returns a valid skin name, such as "Default".
How can I implement this into my program?
Thanks in advance.