hi
i was trying to create a sample using the xampivotgrid but its showing error.i downloaded version 10.2 for silverlight DV
i did this much
< xmlns:igPivot="clr-namespace:Infragistics.Controls.Grids;assembly=InfragisticsSL4.Controls.Grids.XamPivotGrid.v10.2" mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="400"> <Grid x:Name="LayoutRoot" Background="White"> <igPivot:XamPivotGrid x:Name="pivotGrid" /> </Grid></UserControl>
when i build the application i am getting error.. what are the missing reference?
regards
balu
Hi, Balu,
The following lines are equivalent for what you have written:
xmlns:ig="http://schemas.infragistics.com/xaml" xmlns:olap="http://schemas.infragistics.com/olap"
The XamPivotGrid and the rest of the IG controls are in the ig namespace. These namespace references are easier to remember, won't change with different release versions and eliminate the need of new namespace references for the other controls. I recommend using those.
I hope this is helpful.
All the best,
Atanas
i fixed it
xmlns:controls="clr-namespace:Infragistics;assembly=InfragisticsSL4.v10.2" xmlns:olap="clr-namespace:Infragistics.Olap;assembly=InfragisticsSL4.Olap.v10.2" xmlns:igPivot="clr-namespace:Infragistics.Controls.Grids;assembly=InfragisticsSL4.Controls.Grids.XamPivotGrid.v10.2" mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="400"> <Grid x:Name="LayoutRoot" Background="White"> <igPivot:XamPivotGrid x:Name="pivotGrid" /> </Grid>
thanks balu