using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Microsoft.Research.DynamicDataDisplay.Charts { public interface IValueConversion { Func ConvertToDouble { get; set; } Func ConvertFromDouble { get; set; } } }