Files
DynamicDataDisplay/Charts/Axes/Numeric/NumericAxisControl.cs
2024-02-23 00:46:06 -05:00

19 lines
412 B
C#

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