Class SparkDataPoint
Inherited Members
Namespace: Telerik.WinControls.UI.Sparkline
Assembly: Telerik.WinControls.UI.dll
Syntax
public class SparkDataPoint : SparkNode, IDisposable, INotifyPropertyChanged
Constructors
SparkDataPoint()
Properties
DataItem
Gets the object instance that represents the data associated with this point. Valid when the owning ChartSeries is data-bound.
Declaration
public object DataItem { get; }
Property Value
System.Object
|
IsEmpty
Gets a value indicating whether the data point may be plotted correctly.
Declaration
public virtual bool IsEmpty { get; }
Property Value
System.Boolean
|
IsFirst
Gets a value indicating whether the data point may be plotted correctly.
Declaration
public virtual bool IsFirst { get; }
Property Value
System.Boolean
|
IsHigh
Gets a value indicating whether the data point may be plotted correctly.
Declaration
public virtual bool IsHigh { get; }
Property Value
System.Boolean
|
IsInPlotRange
Gets a value indicating whether the data point may be plotted correctly.
Declaration
public virtual bool IsInPlotRange { get; }
Property Value
System.Boolean
|
IsLast
Gets a value indicating whether the data point may be plotted correctly.
Declaration
public virtual bool IsLast { get; }
Property Value
System.Boolean
|
IsLow
Gets a value indicating whether the data point may be plotted correctly.
Declaration
public virtual bool IsLow { get; }
Property Value
System.Boolean
|
IsNegative
Gets a value indicating whether the data point may be plotted correctly.
Declaration
public virtual bool IsNegative { get; }
Property Value
System.Boolean
|
Methods
ContainsBoundValue(Int32)
Determines whether [contains bound value] [the specified index].
Declaration
protected bool ContainsBoundValue(int index)
Parameters
System.Int32
index
The index. |
Returns
System.Boolean
|
GetBoundValue<T>(Int32)
Gets the bound value.
Declaration
protected T GetBoundValue<T>(int index)
Parameters
System.Int32
index
The index. |
Returns
T
|
Type Parameters
T
The type of the T. |
InitBoundValues()
Inits the bound values.
Declaration
protected virtual void InitBoundValues()
SetBoundValue(Int32, Object)
Sets the bound value.
Declaration
protected void SetBoundValue(int index, object value)
Parameters
System.Int32
index
The index. |
System.Object
value
The value. |
SetDataItem(Object)
Sets the data item when data point is data bound.
Declaration
protected virtual void SetDataItem(object data)
Parameters
System.Object
data
|