// (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
{
///
/// Units of measure.
///
public enum Unit
{
///
/// The corresponding value is in pixels.
///
Pixels,
///
/// The corresponding value is in degrees.
///
Degrees,
}
}