This is a migrated thread and some comments may be shown as answers.

[Solved] Expression Blend 3 : RadChart:XAML Intellisense Error

1 Answer 87 Views
Chart
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Gopal
Top achievements
Rank 1
Gopal asked on 05 Dec 2009, 01:06 PM

Hi there, i am using  Expression Blend 3 for making the RadChart (following the tutorial downloaded from the telerik site for Q3 silverlight rad controls). while working on it, i have found that the intellisense is not showing the required methods and properties as shown in the tutorial.Please help me to get it.

in the tutorial the xaml codes are like :

    

<telerikChart:RadChart x:Name="radChart">
   
<telerikChart:RadChart.SeriesMappings>
       
<telerikCharting:SeriesMapping LegendLabel="Product Sales">
           
<telerikCharting:SeriesMapping.SeriesDefinition>
               
<telerikCharting:SplineSeriesDefinition></telerikCharting:SplineSeriesDefinition>
           
</telerikCharting:SeriesMapping.SeriesDefinition>
           
<telerikCharting:SeriesMapping.ItemMappings>
               
<telerikCharting:ItemMapping DataPointMember="XValue" FieldName="Month"></telerikCharting:ItemMapping>
               
<telerikCharting:ItemMapping DataPointMember="YValue" FieldName="Quantity"></telerikCharting:ItemMapping>
           
</telerikCharting:SeriesMapping.ItemMappings>
       
</telerikCharting:SeriesMapping>
   
</telerikChart:RadChart.SeriesMappings>
</
telerikChart:RadChart>

BUT in EXpression Blend 3 i am not getting the required properties & methonds: here the codes i am getting thru intellisense.

    <Telerik_Windows_Controls:RadChart x:Name="radChart" Margin="96,32,112,64" Content="RadChart" d:LayoutOverrides="Width, Height">
  <Telerik_Windows_Controls:RadChart.SeriesMappings ">
   <Telerik_Windows_Controls:
  </Telerik_Windows_Controls:RadChart.SeriesMappings>
 </Telerik_Windows_Controls:RadChart>


I cant find    SeriesMapping LegendLabel and so on

Please help !!!!!!!!!!!!!!!!!!!11



1 Answer, 1 is accepted

Sort by
0
Vladimir Milev
Telerik team
answered on 08 Dec 2009, 12:22 PM
Hello Gopal,

They are in a different namespace and you need to use another mapping:
xmlns:telerikCharting="clr-namespace:Telerik.Windows.Controls.Charting;assembly=Telerik.Windows.Controls.Charting"

Start typing telerikCharting: and all the necessary objects will start appearing in the intellisense.

Sincerely yours,
Vladimir Milev
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Chart
Asked by
Gopal
Top achievements
Rank 1
Answers by
Vladimir Milev
Telerik team
Share this question
or