Tag Archives: Create simple chart in Silverlight 5

Create simple bar chart in Silverlight 5

1. Create a Silverlight project. 2. Paste the following code to your Mainpage.xaml <chartingToolkit:Chart Title=”Typical Use” x:Name=”BarChart”>    <chartingToolkit:Chart.Series>       <chartingToolkit:ColumnSeries x:Name=”series1″         Title=”Population”         ItemsSource=”{Binding PugetSound}”          IndependentValueBinding=”{Binding Name}”          DependentValueBinding=”{Binding Population}”/>       </chartingToolkit:Chart.Series> </chartingToolkit:Chart>   3. … Continue reading

Posted in .Net | Tagged , , | 2 Comments