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.Windows.FrameworkElement.RegisterName(System.String, System.Object)
System.Windows.FrameworkElement.UnregisterName(System.String)
Namespace: System.Windows.Controls.DataVisualization
Assembly: Controls.DataVisualization.OpenSilver.dll
Syntax
public abstract class RangeInterpolator<T> : Interpolator
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 |