// (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.Charting { /// /// A class used to calculate axis range. /// internal class ValueMarginCoordinateAndOverlap { /// /// Gets or sets the value margin object. /// public ValueMargin ValueMargin { get; set; } /// /// Gets or sets the coordinate. /// public double Coordinate { get; set; } /// /// Gets or sets the left overlap. /// public double LeftOverlap { get; set; } /// /// Gets or sets the right overlap. /// public double RightOverlap { get; set; } /// /// Initializes a new instance of the ValueMarginCoordinateAndOverlap /// class. /// public ValueMarginCoordinateAndOverlap() { } } }