How to change the Background color for OlapClient, OlapChartTab, OlapGridTab
We can able to change the background colors for OlapClient control, OlapChartTab, OlapGridTab. This can be achieved by using the following code.
C#
public MainPage()
{
InitializeComponent();
this.DataContext = new ViewModel.ViewModel();
this.olapClient.Loaded += olapClient_Loaded;
}
void olapClient_Loaded(object sender, System.Windows.RoutedEventArgs e)
{
this.olapClient.OlapChartTab.Background = (System.Windows.Media.Brush)new SolidColorBrush(Colors.Yellow);
this.olapClient.OlapGridTab.Background = (System.Windows.Media.Brush)new SolidColorBrush(Colors.Yellow);
this.olapClient.Background = (System.Windows.Media.Brush)new SolidColorBrush(Colors.Purple);
}

Figure: Background colors for OlapClient, OlapChartTab, OlapGridTab has been changed