Class RangeInterpolator<T>
Abstract class representing an interpolator which projects values to a continuous range defined by the From and To properties.
Inheritance
System.Object
RangeInterpolator<T>
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: System.Windows.Controls.DataVisualization
Assembly: OpenSilver.Controls.DataVisualization.Toolkit.dll
Syntax
public abstract class RangeInterpolator<T> : Interpolator, IFrameworkElement, IUIElement, IDependencyObject
Type Parameters
Name | Description |
---|---|
T | The data type of the values in the target range. |
Properties
| Improve this Doc View SourceFrom
Gets or sets a value representing the start value of the target range.
Declaration
public T From { get; set; }
Property Value
Type | Description |
---|---|
T |
To
Gets or sets a value representing the end value of the target range.
Declaration
public T To { get; set; }
Property Value
Type | Description |
---|---|
T |