i download the free trial RadControlsForWpfSetup_2012_2_611,and i study to us the gauge controls following this page : http://www.telerik.com/help/wpf/radgauge-overview.html
but when i run this corde
<Window x:Class="WpfApp.MainWindow" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" Title="MainWindow" Height="350" Width="525"> <Grid> <telerik:RadialScale> <telerik:IndicatorList> <telerik:StateIndicator Name="stateIndicator" Left="0.45" Top="0.25" RelativeWidth="0.2" RelativeHeight="0.2"> </telerik:StateIndicator> </telerik:IndicatorList> </telerik:RadialScale> </Grid></Window>there are some erro message:
1、can't find the type"telerik:IndicatorList"
2、there is no Left 、Top、 RelativeWidth and RelativeHeight proprietary in StateIndicator
i also reference the these .dll: Telerik.Windows.Controls.DataVisualization.dll Telerik.Windows.Controls.dll Telerik.Windows.Data.dll
I do not konw the reason .
who can help me
Thanks !

StyleManager.ApplicationTheme = (Theme)themeUserSelected;InitializeComponent();<Window.Resources> <Path x:Key="MyVectorImage" x:Shared="False" Stroke="DarkGoldenRod" StrokeThickness="3" Data="M 10,20 C 10,25 40,35 40,17 H 28" Stretch="Fill" Width="100" Height="40"/> </Window.Resources>
<telerik:ChartDefaultView.ChartTitle>
<telerik:ChartTitle Content= "{Binding RelativeSource={RelativeSource Mode=FindAncestor,AncestorType={x:Type views:PlotView}},Path=DataContext.ChartTitle}" HorizontalAlignment="Center"/>
</telerik:ChartDefaultView.ChartTitle>
private static void OnSetPageIndexChanged(DependencyObject obj, DependencyPropertyChangedEventArgs e)
{
RadDataPager pager = obj as RadDataPager;
if (pager == null)
return;
if (e.NewValue is bool == false)
return;
if ((bool)e.NewValue)
pager.PageIndexChanged += pager_PageIndexChanged;
else
pager.PageIndexChanged -= pager_PageIndexChanged;
}