Static And Dynamic Pie 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- http://www.c-sharpcorner.com/article/getting-started-mvvm-pattern-using-prism-library-in-wpf/.

Before starting, I hope you added the ‘Prism.Unity’ from ‘NuGet Packages’  for charting. We will do the same for the 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 the package and click Install button.


Afterwards, the package is installed successfully.


Now, you can see the newly added DLL's 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

  1. Create a view named ‘TestView.xaml’ in the Views folder.



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



  3. 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’.

  1. Create a class for chart binding with 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.     }  
  2. Create a list type property named DataList to store multiple values of keyvalue class
  1. class TestModel : BindableBase  
  2.     {  
  3.         private List<Keyvalue> _DataList;  
  4.         public List<Keyvalue> DataList { get { return _DataList; } set { SetProperty(ref _DataList, value); } }  
  5.     }  

Step 7

On the TetsView page,

  1. 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"  
  2. Create 2 Group Boxes with the different header names for static and dynamic chart respectively, where the first will contain a chart with a Pie series with an item source , 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, we use ‘Key’ and ‘Value’ of KeyValue class.

  3. The 2nd 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 Pie Chart">  
    7.         <ChartToolKit:Chart>  
    8.             <ChartToolKit:PieSeries ItemsSource="{Binding Path=TestModel.DataList,  
    9.             UpdateSourceTrigger=PropertyChanged,Mode=TwoWay, NotifyOnSourceUpdated=True }"   
    10.             IndependentValuePath="Key"  
    11.             DependentValuePath="Value">  
    12.             </ChartToolKit:PieSeries>  
    13.         </ChartToolKit:Chart>  
    14.     </GroupBox>  
    15.         <GroupBox  Grid.Row="1" Header="Dynamic Pie Chart" x:Name="GroupBoxDynamicChart">  
    16.     </GroupBox>  
    17. </Grid>   

Step 8

Add PrismMVVMTestProject.ViewModels namespace and bind Data Context 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’, 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 });  
  4. Assign ‘tempList’ to ‘TestModel.DataList’ to bind Static chart.
    1. //Bind the sttaic Chart  
    2.   
    3. TestModel.DataList = tempList;  
  5. Create the dynamic chart and Pie series.
  6. Bind the item source of Pie series with ‘tempList’.
  7. To bind the IndependentvaluePath & DependentvaluePath property, we use ‘Key’ and ‘Value’ of KeyValue Class, which is similar in static chart.
  8. Add the Pie series in to the chart and chart into the groupbox.
    1. //Create the Dynamic Chart, bind it and add it into the 2nd GroupBox  
    2.             Chart dynamicChart = new Chart();  
    3.             PieSeries pieSeries = new PieSeries();  
    4.             pieSeries.ItemsSource = tempList;  
    5.             pieSeries.DependentValuePath = "Value";  
    6.             pieSeries.IndependentValuePath = "Key";  
    7.             dynamicChart.Series.Add(pieSeries);  
    8.             GroupBoxDynamicChart.Content = dynamicChart;  

Run the page and see the output.

Up Next
    Ebook Download
    View all
    Learn
    View all