This question is locked. New answers and comments are not allowed.
I'm attempting to load default chart settings from an xml file like this:-
RadChart chart = new RadChart();
chart.LoadFromXml (filename)
But the default size of chart (400px x 300px) seems to get used despite the fact that my xml starts like this :-
<RadChart Location="0, 0" Size="300, 200" TabIndex="0">
Why is this? Is it a bug? Are there any other items that cannot be set from the xml file?
Andrew