This question is locked. New answers and comments are not allowed.
Hello!
I want to connect PivotGrid with MS AS 2008 R2. I deploy a pump on IIS. It's work with Management Studio.
Then I add a xaml form with next code:
I see transparent on first column and no data in second.
What I am doing wrong?
I want to connect PivotGrid with MS AS 2008 R2. I deploy a pump on IIS. It's work with Management Studio.
Then I add a xaml form with next code:
<UserControl x:Class="ExpertSchetWeb.SL.View.QueryDesignerView" xmlns:pivot="http://schemas.telerik.com/2008/xaml/presentation/pivot" mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="400"> <UserControl.Resources> <pivot:XmlaDataProvider x:Key="DataProvider"> <pivot:XmlaDataProvider.ConnectionSettings> <pivot:XmlaConnectionSettings Cube="MyCubeName" Database="MyDB" ServerAddress="http://192.168.0.1:8100/msmdpump.dll"/> </pivot:XmlaDataProvider.ConnectionSettings> </pivot:XmlaDataProvider> </UserControl.Resources> <Grid> <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></UserControl>What I am doing wrong?