I have added the new telerik dlls(Controls,DataVisualisation,Primitives and Charts) to my solution and when it is run it is throwing the below exception.
Exception of type 'Telerik.UI.Xaml.Controls.TemplateNotAppliedException' was thrown.
at Telerik.UI.Xaml.Controls.RadControl.VerifyTemplateApplied()
at Telerik.UI.Xaml.Controls.RadControl.ArrangeOverride(Size finalSize)
at Telerik.UI.Xaml.Controls.RadChartBase.ArrangeOverride(Size finalSize)
Please let me know where I am going wrong. Please find below the xaml code of my page.
<UserControl
x:Class="Microsoft.Focus.Metro.View.Widget.Widget"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Microsoft.Focus.Metro.View.Widget"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
xmlns:telerik="using:Telerik.UI.Xaml.Controls"
d:DesignHeight="300"
d:DesignWidth="400">
<Grid x:Name="LayoutRoot" x:FieldModifier="public" Background="Black" RenderTransformOrigin="0.5,0.5">
<Grid.RenderTransform>
<CompositeTransform/>
</Grid.RenderTransform>
<telerik:RadCartesianChart x:Name="StandardChart" x:FieldModifier="public" ClipToBounds="True">
<telerik:RadCartesianChart.HorizontalAxis>
<telerik:DateTimeCategoricalAxis x:Name="AreaHorizontalAxis" LabelFitMode="Rotate" />
</telerik:RadCartesianChart.HorizontalAxis>
<telerik:RadCartesianChart.VerticalAxis>
<telerik:LinearAxis x:Name="AreaLinearAxis" MajorTickStyle="{StaticResource TransparentRectangle}" >
<telerik:LinearAxis.LabelStyle>
<Style TargetType="TextBlock">
<Setter Property="Width" Value="60"/>
<Setter Property="TextAlignment" Value="Right"/>
<Setter Property="VerticalAlignment" Value="Top"/>
</Style>
</telerik:LinearAxis.LabelStyle>
</telerik:LinearAxis>
</telerik:RadCartesianChart.VerticalAxis>
<telerik:RadCartesianChart.Grid>
<telerik:CartesianChartGrid x:Name="AreaCartesianChartGrid" MajorLinesVisibility="None" />
</telerik:RadCartesianChart.Grid>
</telerik:RadCartesianChart>
</Grid>
</UserControl>
Thanks in advance