Class ChartBindingData
Represents chart binding data class.
Inheritance
System.Object
ChartBindingData
Implements
System.Collections.Specialized.INotifyCollectionChanged
System.ComponentModel.ISupportInitialize
System.IDisposable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Chart
Assembly: Syncfusion.Chart.Wpf.dll
Syntax
public class ChartBindingData : IChartData, INotifyCollectionChanged, ISupportInitialize, IDisposable
Constructors
ChartBindingData()
Declaration
public ChartBindingData()
Properties
ChartXValueType
Get and Set ChartXValueTypeProperty
Declaration
public ChartValueType ChartXValueType { get; set; }
Property Value
Type |
---|
ChartValueType |
Count
Gets the chart points count.
Declaration
public int Count { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The count. |
Item[Int32]
Gets the IChartDataPoint at the specified index.
Declaration
public IChartDataPoint this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The index value |
Property Value
Type | Description |
---|---|
IChartDataPoint | The Chart Data point |
Source
Gets or sets the source.
Declaration
public IEnumerable Source { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.IEnumerable | The source. |
XPath
Gets or sets the X path.
Declaration
public string XPath { get; set; }
Property Value
Type | Description |
---|---|
System.String | The X path. |
XValueType
Gets the type of the value.
Declaration
public ChartValueType XValueType { get; }
Property Value
Type | Description |
---|---|
ChartValueType | The type of the value. |
YPaths
Gets or sets the Y paths.
Declaration
public string[] YPaths { get; set; }
Property Value
Type | Description |
---|---|
System.String[] | The Y paths. |
Methods
BeginInit()
Signals the object that initialization is starting.
Declaration
public void BeginInit()
Dispose()
Clean up any resources being used.
Declaration
public void Dispose()
EndInit()
Signals the object that initialization is complete.
Declaration
public void EndInit()
Events
CollectionChanged
Occurs when data is changed.
Declaration
public event NotifyCollectionChangedEventHandler CollectionChanged
Event Type
Type |
---|
System.Collections.Specialized.NotifyCollectionChangedEventHandler |
Explicit Interface Implementations
IDisposable.Dispose()
Declaration
void IDisposable.Dispose()
Implements
System.Collections.Specialized.INotifyCollectionChanged
System.ComponentModel.ISupportInitialize
System.IDisposable