Beispiel #1
0
 public void CopyFrom(FormulaAxisX fax)
 {
     this.Visible            = fax.Visible;
     this.DateFormatProvider = fax.DateFormatProvider;
     this.AutoScale          = fax.AutoScale;
     this.Format             = fax.Format;
     this.MajorTick          = (FormulaTick)fax.MajorTick.Clone();
     this.MinorTick          = (FormulaTick)fax.MinorTick.Clone();
     this.Back           = (FormulaBack)fax.Back.Clone();
     this.LabelFont      = (Font)fax.LabelFont.Clone();
     this.LabelBrush     = (Brush)fax.LabelBrush.Clone();
     this.AxisLabelAlign = fax.AxisLabelAlign;
     this.DataCycle      = fax.DataCycle;
 }
Beispiel #2
0
 public FormulaXFormat(double Days100Pixel, string Interval, string XFormat, double CycleDivide, string XCursorFormat, Easychart.Finance.AxisLabelAlign AxisLabelAlign) : this(Days100Pixel, Interval, XFormat, CycleDivide, XCursorFormat)
 {
     this.axisLabelAlign = AxisLabelAlign;
 }