XAML: xmlns:tk="clr-namespace:System.Windows.Controls.DataVisualization.Charting;assembly=System.Windows.Controls.DataVisualization.Toolkit" Title="One Line" Height="350" Width="525" Loaded="Window_Loaded"> CS: using System.Windows.Controls.DataVisualization.Charting; private void Window_Loaded(object sender, RoutedEventArgs e) { mcChart.LegendTitle = "Legend"; ((LineSeries)mcChart.Series[0]).ItemsSource = new KeyValuePair[]{ new KeyValuePair(DateTime.Now, 100), new KeyValuePair(DateTime.Now.AddMonths(1), 130), new KeyValuePair(DateTime.Now.AddMonths(2), 150), new KeyValuePair(DateTime.Now.AddMonths(3), 125), new KeyValuePair(DateTime.Now.AddMonths(4),155) }; LineSeries ls2 = ((LineSeries)mcChart.Series[1]); ls2.ItemsSource = new KeyValuePair[]{ new KeyValuePair(DateTime.Now, 200), new KeyValuePair(DateTime.Now.AddMonths(3), 230), new KeyValuePair(DateTime.Now.AddMonths(5), 250), new KeyValuePair(DateTime.Now.AddMonths(6), 225), new KeyValuePair(DateTime.Now.AddMonths(7),255) }; }