LiveCharts.AxisCore.AxisCore C# (CSharp) Method

AxisCore() public method

Initializes a new instance of the AxisCore class.
public AxisCore ( IAxisView view ) : System
view IAxisView The view.
return System
        public AxisCore(IAxisView view)
        {
            View = view;
            CleanFactor = 3;
            Cache = new Dictionary<double, SeparatorElementCore>();
            LastAxisMax = null;
            LastAxisMin = null;
        }