I was asked to try Telerik for our upcoming project. I downloaded the trial version last friday and played with it yesterday. The more stuff I added in the XAML, the less WISYWIG was the view in the XAML editor.
I was also getting the IntelliSense issue (see http://www.telerik.com/forums/vs-2015-xaml-intellisense-not-working) so I installed the HotFix. Now, my rendered XAML in the editor is giving a "Sequence contains more than one element" with a big stack trace. Still, the test application runs fine. The problematic XAML is a chart inside the pane of a Split Container:
<
telerik:RadPaneGroup
>
<
telerik:RadPane
Header
=
"Results"
ContextMenuTemplate
=
"{x:Null}"
CanUserClose
=
"False"
CanFloat
=
"False"
>
<
telerik:RadCartesianChart
>
<
telerik:RadCartesianChart.HorizontalAxis
>
<
telerik:CategoricalAxis
/>
</
telerik:RadCartesianChart.HorizontalAxis
>
<
telerik:RadCartesianChart.VerticalAxis
>
<
telerik:LinearAxis
/>
</
telerik:RadCartesianChart.VerticalAxis
>
<
telerik:RadCartesianChart.Series
>
<
telerik:BarSeries
>
<
telerik:BarSeries.DataPoints
>
<
telerik:CategoricalDataPoint
Category
=
"Apples"
Value
=
"20"
/>
<
telerik:CategoricalDataPoint
Category
=
"Bananas"
Value
=
"28"
/>
<
telerik:CategoricalDataPoint
Category
=
"Oranges"
Value
=
"17"
/>
<
telerik:CategoricalDataPoint
Category
=
"Strawberries"
Value
=
"30"
/>
</
telerik:BarSeries.DataPoints
>
</
telerik:BarSeries
>
</
telerik:RadCartesianChart.Series
>
</
telerik:RadCartesianChart
>
</
telerik:RadPane
>
</
telerik:RadPaneGroup
>
If I remove the "RadCartesianChart" section, the exception goes away. The rendered preview still makes no sense though.
It's very hard to create a XAML view if the editor doesn't render the view correctly.