// (c) Copyright Microsoft Corporation. // This source is subject to the Microsoft Public License (Ms-PL). // Please see http://go.microsoft.com/fwlink/?LinkID=131993 for details. // All other rights reserved. namespace System.Windows.Controls.DataVisualization { /// /// Abstract class representing an interpolator which projects values to /// a continuous range defined by the From and To properties. /// /// The data type of the values in the target range. /// Preview public abstract class RangeInterpolator : Interpolator { /// /// Gets or sets a value representing the start value of the target range. /// public T From { get; set; } /// /// Gets or sets a value representing the end value of the target range. /// public T To { get; set; } } }