In this article, you will learn, how to create Piechart in Universal Windows apps development with XAML and Visual C#.
Before reading this article, please go through the article's link given below-.
By reading this article, you can learn how to create Piechart in Universal Windows apps development with XAML and Visual C#. The following important tools are required to develop UWP-
Now we can discuss step by step App development. Step 1 - Open Visual Studio 2015 -> Start -> New Project-> Select Universal (under Visual C#->Windows)-> Blank app -> Give the suitable name for your app (UWPPiechart)->OK. Choose the Target and minimum platform version your Windows Universal Application will support. Afterwards, the project creates App.xaml and MainPage.xaml. Step 2 - Go to the Solution Explorer and add the WINRT XAML Tool Kit Control reference in the project. For adding the reference, right click on your project (UWPPiechart) and select Manage NuGet Packages. Choose browse and search WinRTXamlToolkit.Controls.DataVisualization.UWP, select the package and install it. Accept the review change. Reference is added to your project. Step 3 - Add the charting namespace in your XAML view. Add TextBlock control, change the name and text property. Step 4 - Add the Chart control code in the XAML View. Step 5 - Add the following namespace and class in MainPage.xaml.cs. Step 6 - Add the method GetChartData() in MainPage.xaml.cs. This code is used to set the values for your Piechart and call the GetChartData() method in the constructor method (MainPage() method) in MainPage.xaml.cs. Step 7 - Deploy your app in Local Machine and the output of the UWPPiechart app is given below- Summary Now, you have successfully created and tested Piechart in Visual C# - UWP environment.
Printing in C# Made Easy