using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Microsoft.Research.DynamicDataDisplay.Charts { /// /// Represents a horizontal axis with values of type. /// public class HorizontalTimeSpanAxis : TimeSpanAxis { /// /// Initializes a new instance of the class, placed on the bottom of . /// public HorizontalTimeSpanAxis() { Placement = AxisPlacement.Bottom; } protected override void ValidatePlacement(AxisPlacement newPlacement) { if (newPlacement == AxisPlacement.Left || newPlacement == AxisPlacement.Right) throw new ArgumentException(Strings.Exceptions.HorizontalAxisCannotBeVertical); } } }