Charting for WPF Programmer's Guide

PieSeries.Data Property

See Also
 


Gets or sets the data for the chart.

Namespace: MindFusion.Charting.Wpf
Assembly: Charting

 Syntax

C#  Copy Code

public IList Data { get; set; }

Visual Basic  Copy Code

Public Property Data As IList

 Property Value

A new list with numbers. Default is a list with five doule values new double[]{ 28, 42, 17, 39, 82 }.

 Remarks

If the numbers are not double, the control tries to parse them automatically using the standard .NET double.Parse() method and the InvariantCulture.

 See Also