This question is locked. New answers and comments are not allowed.
RadPivotGrid for OLAP support is a nice control where it give a fast respond. I have try to using this control everything is working fine except I can't perform Report Filter on it, I can't drag and drop the dimension to Report Filter list box.
It is a bug or I have miss out anything?
Below is my xaml code
Thanks
It is a bug or I have miss out anything?
Below is my xaml code
<UserControl.Resources> <pivot:XmlaDataProvider x:Key="DataProvider"> <pivot:XmlaDataProvider.ConnectionSettings> <pivot:XmlaConnectionSettings Cube="Cube" Database="Database" ServerAddress="http://server/olap/msmdpump.dll"/> </pivot:XmlaDataProvider.ConnectionSettings> <pivot:XmlaDataProvider.RowGroupDescriptions> <pivot:XmlaGroupDescription MemberName="[Dim Creation Calendar].[Fiscal Year]"/> <pivot:XmlaGroupDescription MemberName="[Dim Creation Calendar].[Fiscal Quater]"/> </pivot:XmlaDataProvider.RowGroupDescriptions> <pivot:XmlaDataProvider.ColumnGroupDescriptions> <pivot:XmlaGroupDescription MemberName="[Dim Location].[Location]"/> </pivot:XmlaDataProvider.ColumnGroupDescriptions> <pivot:XmlaDataProvider.AggregateDescriptions> <pivot:XmlaAggregateDescription MemberName="[Measures].[No. of Ticket]"/> </pivot:XmlaDataProvider.AggregateDescriptions> </pivot:XmlaDataProvider> </UserControl.Resources><Grid x:Name="LayoutRoot" Style="{StaticResource LayoutRootGridStyle}"> <Grid.ColumnDefinitions> <ColumnDefinition Width="3*" /> <ColumnDefinition Width="*" /> </Grid.ColumnDefinitions> <Grid.RowDefinitions> <RowDefinition Height="*" /> <RowDefinition Height="Auto" /> </Grid.RowDefinitions> <pivot:RadPivotGrid x:Name="Pivot" Grid.RowSpan="2" DataProvider="{StaticResource DataProvider}" /> <pivot:RadPivotFieldList x:Name="FieldList" Grid.Column="1" Margin="4 0 0 0" DataProvider="{StaticResource DataProvider}"/> </Grid>Thanks