Static And Dynamic Line Chart In WPF With MVVM Pattern Using Prism Library

I hope, you have some knowledge of WPF and XAML before starting.To know more about MVVM using Prism, follow this link: http://www.c-sharpcorner.com/article/getting-started-mvvm-pattern-using-prism-library-in-wpf.

Before starting, I hope you have added the ‘Prism.Unity’ from ‘NuGet Packages’ and for charting, we will do the same for charting controls package.

Note

In this article, I am using Visual Studio 2015.

Step 1

Create a project named ‘PrismMVVMTestProject’ of WPF Application.


Step 2



Right click on the project and select ‘Manage NuGet Packages’.

Step 3

  1. For charting controls, type ‘System.Windows.Controls.DataVisualization ‘ in browse section, select that package, and click on "Install" button.


After successfully installing the package, the screenshot will be, as shown below.


Now, you can see the newly added DLLs in the reference section of the project.


Step 4

It’s a better approach to create the 3 different folders in the project for Model, View and View model respectively.


Step 5

  • Create the pages in all the folders
  • Create a View named ‘TestView.xaml’ in the Views folder.



  • Create a Model named ‘TestModel.xaml’ in the Models folder.



  • Create a ViewModel Named ‘TestViewModel.xaml’ in the ViewModels folder.


Step 6

Add the namespace named ‘Prism.MVVM’ in the TestModel page to inherit the class named ‘Bindable Base’.

Create a class for chart binding with the key and value properties for Axis-X and Y. 
  1. class Keyvalue : BindableBase  
  2.     {  
  3.         private string _Key;  
  4.         public string Key { get { return _Key; } set { SetProperty(ref _Key, value); } }  
  5.   
  6.         private int _Value;  
  7.         public int Value { get { return _Value; } set { SetProperty(ref _Value, value); } }  
  8.     }  
  9. ii) Create a list type property named DataList to store multiple values of keyvalue class  
  10.   
  11. class TestModel : BindableBase  
  12.     {  
  13.         private List<Keyvalue> _DataList;  
  14.         public List<Keyvalue> DataList { get { return _DataList; } set { SetProperty(ref _DataList, value); } }  
  15.     }  

Step 7

On the TestView page, we do as shown below.

Access the assembly of charting on the top of the view .

  1. xmlns:ChartToolKit="clr-namespace:System.Windows.Controls.DataVisualization.Charting;assembly=System.Windows.Controls.DataVisualization.Toolkit"   
Create 2 Group boxes with different header names for static and dynamic chart respectively, where 1st will contain a chart with a line series with the itemsource, IndependentvaluePath and DependentvaluePath property.

Note

Here, Itemsource property is bound with ‘DataList’ property, which we have created in TestModel class and for IndependentvaluePath & DependentvaluePath property, which we use ‘Key’ and ‘Value’ of KeyValue class.

The second groupbox didn’t contain anything; as it just has a name.

  1. <Grid>  
  2.     <Grid.RowDefinitions>  
  3.         <RowDefinition></RowDefinition>  
  4.         <RowDefinition></RowDefinition>  
  5.     </Grid.RowDefinitions>  
  6.     <GroupBox Grid.Row="0" Header="Static Line Chart">  
  7.         <ChartToolKit:Chart>  
  8.             <ChartToolKit:LineSeries ItemsSource="{Binding Path=TestModel.DataList,  
  9.             UpdateSourceTrigger=PropertyChanged,Mode=TwoWay, NotifyOnSourceUpdated=True }"   
  10.             IndependentValuePath="Key"  
  11.             DependentValuePath="Value">  
  12.             </ChartToolKit:LineSeries>  
  13.         </ChartToolKit:Chart>  
  14.     </GroupBox>  
  15.         <GroupBox  Grid.Row="1" Header="Dynamic Line Chart" x:Name="GroupBoxDynamicChart">  
  16.     </GroupBox>  
  17. </Grid>  

Step 8

Add PrismMVVMTestProject.ViewModels namespace and bind datacontext of TestView Page to the ViewModel named ‘TestViewModel’. and pass the 2nd groupbox into it. 

  1. using System.Windows;  
  2. using PrismMVVMTestProject.ViewModels;  
  3. namespace PrismMVVMTestProject.Views  
  4. {  
  5.     /// <summary>  
  6.     /// Interaction logic for TestView.xaml  
  7.     /// </summary>  
  8.     public partial class TestView : Window  
  9.     {  
  10.         public TestView()  
  11.         {  
  12.             InitializeComponent();  
  13.             this.DataContext = new TestViewModel(GroupBoxDynamicChart);  
  14.         }  
  15.     }  
  16. }  

Step 9

  1. Add the namespace named ‘Prism.MVVM’ and ‘PrismMVVMTestProject.Models’ in the TestViewModel page to inherit the class named ‘Bindable Base’ and access TestModel in this page.
  2. Create a property of TestModel class object, where ‘ref‘ parameter allows you to update its value.
  3. Create a local list of keyvalue class named ‘tempList’ and add some data into it.
    1. List<Keyvalue> tempList = new List<Keyvalue>();  
    2. tempList.Add(new Keyvalue() { Key = "Rs.100", Value = 50 });  
    3. tempList.Add(new Keyvalue() { Key = "Rs.500", Value = 18 });  
    4. tempList.Add(new Keyvalue() { Key = "Rs.1000", Value = 25 });  
    5. tempList.Add(new Keyvalue() { Key = "Rs.2000", Value = 5 });  
Assign ‘tempList’ to ‘TestModel.DataList’ to bind the static chart.

  1. //Bind the sttaic Chart                       
  2. TestModel.DataList = tempList;   
  1. Create the dynamic chart and line series.
  2. Bind the item source of line series with ‘tempList’.
  3. To bind the IndependentvaluePath & DependentvaluePath property we use ‘Key’ and ‘Value’ of KeyValue Class same as in static chart.
  4. Add the line series in to the chart and chart into the groupbox.

Create the dynamic chart, bind it and add it into the 2nd groupBox 

  1. Chart dynamicChart = new Chart();  
  2.             LineSeries lineseries = new LineSeries();  
  3.             lineseries.ItemsSource = tempList;  
  4.             lineseries.DependentValuePath = "Value";  
  5.             lineseries.IndependentValuePath = "Key";  
  6.             dynamicChart.Series.Add(lineseries);  
  7.             GroupBoxDynamicChart.Content = dynamicChart;   

Run the page and see the output.

Next Recommended Readings