using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Microsoft.Research.DynamicDataDisplay.Charts
{
///
/// Defines the position of axis inside ChartPlotter.
///
public enum AxisPlacement
{
///
/// Axis is placed to the left.
///
Left,
///
/// Axis is placed to the right.
///
Right,
///
/// Axis is placed to the top.
///
Top,
///
/// Axis is placed to the bottom.
///
Bottom
}
}