How to Enable AutoExecute Property in OlapClient WPF
The AutoExecute property allows the users to drag and drop elements to the Axis Element Builder without the query being executed after every change. This would be very useful if a user wanted to see only a specific subset of data within a large cross section. After clicking the AutoExecute button in the OlapClient ToolBar, the chart and grid in OlapClient has been rendered with corresponding data.
C#
void olapClient1_Loaded(object sender, RoutedEventArgs e) { this.olapClient1.OlapClientToolBar.AutoExecute = true; } |