Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
78 lines (65 sloc)
2.37 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Windows.UI.Xaml; | |
using System; | |
using Windows.UI.Xaml.Controls; | |
using Windows.UI.Xaml.Media; | |
using Syncfusion.UI.Xaml.Charts; | |
using System.Collections.Generic; | |
// The Blank Page item template is documented at https://go.microsoft.com/fwlink/?LinkId=402352&clcid=0x409 | |
namespace UwpOnRp | |
{ | |
/// <summary> | |
/// An empty page that can be used on its own or navigated to within a Frame. | |
/// </summary> | |
public sealed partial class MainPage : Page | |
{ | |
public MainPage() | |
{ | |
this.InitializeComponent(); | |
SfChart chart = new SfChart() { Header = "Chart", Height = 300, Width = 500 }; | |
//Adding horizontal axis to the chart | |
CategoryAxis primaryAxis = new CategoryAxis(); | |
primaryAxis.Header = "Name"; | |
primaryAxis.FontSize = 14; | |
chart.PrimaryAxis = primaryAxis; | |
//Adding vertical axis to the chart | |
NumericalAxis secondaryAxis = new NumericalAxis(); | |
secondaryAxis.Header = "Height(in cm)"; | |
secondaryAxis.FontSize = 14; | |
chart.SecondaryAxis = secondaryAxis; | |
//Adding Legends for the chart | |
ChartLegend legend = new ChartLegend(); | |
chart.Legend = legend; | |
//Initializing column series | |
ColumnSeries series = new ColumnSeries(); | |
series.ItemsSource = (new ViewModel()).Data; | |
series.XBindingPath = "Name"; | |
series.YBindingPath = "Height"; | |
series.ShowTooltip = true; | |
series.Label = "Heights"; | |
//Setting adornment to the chart series | |
series.AdornmentsInfo = new ChartAdornmentInfo() { ShowLabel = true }; | |
//Adding Series to the Chart Series Collection | |
chart.Series.Add(series); | |
this.Content = chart; | |
} | |
} | |
public class ViewModel | |
{ | |
public List<Person> Data { get; set; } | |
public ViewModel() | |
{ | |
Data = new List<Person>() | |
{ | |
new Person { Name = "David", Height = 180 }, | |
new Person { Name = "Michael", Height = 170 }, | |
new Person { Name = "Steve", Height = 160 }, | |
new Person { Name = "Joel", Height = 182 } | |
}; | |
} | |
} | |
public class Person | |
{ | |
public string Name { get; set; } | |
public double Height { get; set; } | |
} | |
} |