Class GenericDataPointBinding<TElement, TResult>
Represents a DataPointBinding that uses a generic delegate to retrieve the value to be applied for the generated data points.
Namespace: Telerik.Windows.Controls.ChartView
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public class GenericDataPointBinding<TElement, TResult> : DataPointBinding, INotifyPropertyChanged
Type Parameters
TElement
The type of the element. |
TResult
The type of the return value of the generic delegate. |
Constructors
GenericDataPointBinding()
Declaration
public GenericDataPointBinding()
Properties
ValueSelector
Gets or sets the generic delegate used to retrieve bound objects values.
Declaration
public Func<TElement, TResult> ValueSelector { get; set; }
Property Value
System.Func<TElement, TResult>
|
Methods
GetValue(Object)
Retrieves the value for the specified object instance.
Declaration
public override object GetValue(object instance)
Parameters
System.Object
instance
|
Returns
System.Object
|