// (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
{
///
/// Range axes look for this interface on series to determine whether to
/// anchor the origin to the bottom or top of the screen where possible.
///
///
/// Implementing this interface ensures that value margins will not cause
/// an origin to float above the bottom or top of the screen if no
/// data exists below or above.
///
public interface IAnchoredToOrigin
{
///
/// Gets the axis to which the data is anchored.
///
IRangeAxis AnchoredAxis { get; }
}
}