All the controls missing in WPF. Over 1 million downloads.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
937 B

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