At certain points you may want to force an update on the C1OlapPage or C1OlapPanel to regenerate the analysis. You can call the Update method on the C1OlapEngine. To add this functionality to your UI, add a button and in its click event add this code:
// regenerate the olap view
void Button_Click(object sender, RoutedEventArgs e)
{
_c1OlapPage.OlapPanel.OlapEngine.Update();
}