This question is locked. New answers and comments are not allowed.
Hi there
I'm trying to mock up a drilldown chart in Blend 4 but can't seem to get the xaml to compile properly. It is throwing an error on the RadChart.HierarchicalViewDescriptors line saying that the "member is not recognized etc..."
Am I missing a reference? I am using the Q2 2010 version of the Silverlight libraries.
I'm trying to mock up a drilldown chart in Blend 4 but can't seem to get the xaml to compile properly. It is throwing an error on the RadChart.HierarchicalViewDescriptors line saying that the "member is not recognized etc..."
Am I missing a reference? I am using the Q2 2010 version of the Silverlight libraries.
<
UserControl
mc:Ignorable
=
"d"
x:Class
=
"DrillDown"
xmlns:telerik
=
"http://schemas.telerik.com/2008/xaml/presentation"
d:DesignWidth
=
"640"
d:DesignHeight
=
"480"
>
<
Grid
x:Name
=
"LayoutRoot"
>
<
telerik:RadChart
x:Name
=
"radChart"
>
<
telerik:RadChart.HierarchicalViewDescriptors
>
<
telerik:ChartHierarchicalViewDescriptor
>
<
telerik:ChartHierarchicalViewDescriptor.SeriesMappings
>
<
telerik:SeriesMapping
>
<
telerik:ItemMapping
FieldName
=
"Sales.TotalAmount"
DataPointMember
=
"YValue"
>
</
telerik:ItemMapping
>
<
telerik:ItemMapping
FieldName
=
"Name"
DataPointMember
=
"XCategory"
></
telerik:ItemMapping
>
</
telerik:SeriesMapping
>
</
telerik:ChartHierarchicalViewDescriptor.SeriesMappings
>
</
telerik:ChartHierarchicalViewDescriptor
>
</
telerik:RadChart.HierarchicalViewDescriptors
>
</
telerik:RadChart
>
</
Grid
>
</
UserControl
>