Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 829 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 829 Bytes

Charts.WPF

Modern UI Charts for WPF.

Install-Package Charts.WPF -Version 1.0.0

Release Notes:

Code ported for the newest .NET frameworks. General bug fixes and optimizations made.

Screenshots

Default

Light Theme

Dark Theme

Examples

public class TestClass
{
    public string Category { get; set; }
    public int Number  { get; set; }
}

<chart:ChartSeries
    SeriesTitle="Errors"
    DisplayMember="Category"
    ValueMember="Number"    
    ItemsSource="{Binding Path=Errors}" />

Fork from http://modernuicharts.codeplex.com.