I can change background of GridArea using XAML
<igChart:XamWebChart x:Name="chart1"> <igChart:XamWebChart.Scene> <igChart:Scene> <igChart:Scene.GridArea> <igChart:GridArea Background="PaleGreen" /> </igChart:Scene.GridArea> </igChart:Scene> </igChart:XamWebChart.Scene> </igChart:XamWebChart>In procedural code,
this should work better:
this.chart1.Scene = new Scene();this.chart1.Scene.GridArea = new GridArea();this.chart1.Scene.GridArea.Background = new SolidColorBrush(Colors.Green); this.LayoutRoot.Children.Add(chart1);this.chart1.Refresh();
Tanks,
It do well.