// (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
{
///
/// Axis position.
///
public enum AxisLocation
{
///
/// Location is determined automatically.
///
Auto,
///
/// Left in the series host area.
///
Left,
///
/// Top in the series host area.
///
Top,
///
/// Right in the series host area.
///
Right,
///
/// Bottom of the series host area.
///
Bottom,
}
}