// (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.
using System;
namespace System.Windows.Controls.DataVisualization.Charting.Primitives
{
///
/// Specifies the edge position of a child element that is inside an
/// EdgePanel.
///
/// Preview
public enum Edge
{
///
/// A child element that is positioned in the center of a EdgePanel.
///
Center,
///
/// A child element that is positioned on the left side of the
/// EdgePanel.
///
Left,
///
/// A child element that is positioned at the top of the EdgePanel.
///
Top,
///
/// A child element that is positioned on the right side of the
/// EdgePanel.
///
Right,
///
/// A child element that is positioned at the bottom of the EdgePanel.
///
Bottom,
}
}