using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Microsoft.Research.DynamicDataDisplay.Charts { public class NumericAxisControl : AxisControl { public NumericAxisControl() { LabelProvider = new ExponentialLabelProvider(); TicksProvider = new NumericTicksProvider(); ConvertToDouble = d => d; Range = new Range(0, 10); } } }