#define Graph_And_Chart_PRO using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ChartAndGraph { public enum ChartDivisionAligment { /// /// left for vertical axis and top for horizontal axis /// Standard = 1, /// /// right for vertical axis and bottom for horizontal axis /// Opposite = 2, } }