Articles in this section
Category / Section

How to set disabled option for button opening Member Editor and Measure Editor

1 min read

We can able to set disabled option for the button in SplitButton which opens the Member Editor and Measure Editor in the OlapClient Control. That button can be set disabled by setting the “IsMemberEditorOpen” and “IsMeasureEditorOpen” to false. So that we cannot able to open the Member editor and Measure editor.

Please refer the below code snippet to know how to use these properties in OlapClient Control.

XAML

 
<syncfusion:OlapClient x:Name="olapClient" IsMeasureEditorOpen="False" IsMemberEditorOpen="False" OlapDataManager="{Binding OlapDataManager}">

C#

 
public MainPage()
        {
            InitializeComponent();
            this.DataContext = new ViewModel.ViewModel();
            this.olapClient.IsMeasureEditorOpen = false;
            this.olapClient.IsMemberEditorOpen = false;
        }
 

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied