This question is locked. New answers and comments are not allowed.
When I try to add 3rd gauge control to the page I get this error:
Here is markup, no code behind. I have used dll from RadControls_for_Silverlight_4_2010_1_0422_TRIAL_hotfix
Thanks.
4008 : RuntimeError, Message: Layout cycle detected. Layout could not complete.
And if I take away one of those three gauge controls page loads fine.Here is markup, no code behind. I have used dll from RadControls_for_Silverlight_4_2010_1_0422_TRIAL_hotfix
Thanks.
<navigation:Page x:Class="TelerikChartNav.Views.Gauge" |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
mc:Ignorable="d" |
xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation" xmlns:tlrkGaugeControl="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Gauge" xmlns:tlrkGauge="clr-namespace:Telerik.Windows.Controls.Gauges;assembly=Telerik.Windows.Controls.Gauge" d:DesignWidth="640" d:DesignHeight="480" |
Title="Gauge Page"> |
<Grid x:Name="LayoutRoot"> |
<ScrollViewer HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Visible" Canvas.Top="60" Canvas.Left="340"> |
<StackPanel> |
<tlrkGaugeControl:RadGauge x:Name="radGauge0" Width="200" Height="200"> |
<tlrkGauge:RadialGauge> |
<tlrkGauge:RadialScale x:Name="radialScale0" Min="0" Max="1000"> |
<tlrkGauge:IndicatorList> |
<tlrkGauge:Needle x:Name="needle01" Value="100" TooltipFormat="kjk {0} \n Volume" /> |
<tlrkGauge:Needle x:Name="needle02" Value="200" /> |
</tlrkGauge:IndicatorList> |
</tlrkGauge:RadialScale> |
</tlrkGauge:RadialGauge> |
</tlrkGaugeControl:RadGauge> |
<tlrkGaugeControl:RadGauge x:Name="radGauge1" Width="200" Height="200"> |
<tlrkGauge:RadialGauge> |
<tlrkGauge:RadialScale x:Name="radialScale" Min="0" Max="1000"> |
<tlrkGauge:IndicatorList> |
<tlrkGauge:Needle x:Name="needle1" Value="100" TooltipFormat="Tooltip {0}" /> |
<tlrkGauge:Needle x:Name="needle2" Value="200" /> |
</tlrkGauge:IndicatorList> |
</tlrkGauge:RadialScale> |
</tlrkGauge:RadialGauge> |
</tlrkGaugeControl:RadGauge> |
<tlrkGaugeControl:RadGauge x:Name="radGauge2" Width="200" Height="200"> |
<tlrkGauge:LinearGauge> |
<tlrkGauge:LinearScale x:Name="linearScale1" Min="0" Max="1000"> |
<tlrkGauge:IndicatorList> |
<tlrkGauge:LinearBar x:Name="linearBar1" Value="500" /> |
</tlrkGauge:IndicatorList> |
</tlrkGauge:LinearScale> |
<tlrkGauge:LinearScale x:Name="linearScale2" Min="0" Max="1000"> |
<tlrkGauge:IndicatorList> |
<tlrkGauge:LinearBar x:Name="linearBar2" Value="1000" /> |
</tlrkGauge:IndicatorList> |
</tlrkGauge:LinearScale> |
</tlrkGauge:LinearGauge> |
</tlrkGaugeControl:RadGauge> |
</StackPanel> |
</ScrollViewer> |
</Grid> |
</navigation:Page> |