Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
980
URGENT: Blend is crashing on pages with specific IG namespace
posted

Hi all,

 

I am experiencing Blend Preview 5 issues;

Namely, unexpected exception is randomly thrown on pages containing this namespace:

xmlns:ig="http://schemas.infragistics.com/xaml"

 

 

I use <ig:XamPieChart>

<ig:XamPieChart x:Name="pie1Chart"
                                            Legend="{Binding ElementName=legendPie1}"
                                            ItemsSource="{Binding Data}"
                                            LabelMemberPath="Label"
                                            ValueMemberPath="Value"
                                            ToolTip="{}{Label}"                   
                                            AllowSliceExplosion="True"
                                            ExplodedSlices="1 2 3 4"
                                            LeaderLineVisibility="Visible" Margin="0" Height="150"
                                            VerticalAlignment="Center" Grid.Column="2">
                                            <ig:XamPieChart.Style>
                                                <Style TargetType="ig:XamPieChart">
                                                    <Setter Property="LabelsPosition" Value="Center" />
                                                     <Setter Property="Foreground" Value="Transparent" />                                           
                                                </Style>                                
                                            </ig:XamPieChart.Style>                            
                                            </ig:XamPieChart>
                                        <ig:ItemLegend x:Name="legendPie1" Visibility="Visible" Style="{StaticResource legendPieStyle}"
                                            Margin="15,0,0,0" Padding="10,5,10,5" Grid.Column="4" FontSize="8.5" Grid.Row="0" />

Do I need to fix something in the usage?

 

Thanks