Beispiel #1
0
 public void CopyFrom(FormulaAxisY fay)
 {
     this.Visible      = fay.Visible;
     this.AutoMultiply = fay.AutoMultiply;
     this.Width        = fay.Width;
     this.AutoScale    = fay.AutoScale;
     this.MajorTick    = (FormulaTick)fay.MajorTick.Clone();
     this.MinorTick    = (FormulaTick)fay.MinorTick.Clone();
     this.Back         = (FormulaBack)fay.Back.Clone();
     this.AutoFormat   = fay.AutoFormat;
     this.Format       = fay.Format;
     this.MultiplyBack = (FormulaBack)fay.MultiplyBack.Clone();
     this.LabelFont    = (Font)fay.LabelFont.Clone();
     this.LabelBrush   = (Brush)fay.LabelBrush.Clone();
     this.AxisPos      = fay.AxisPos;
 }
Beispiel #2
0
 public FormulaSkin()
 {
     Brush[] brushArray = new Brush[3];
     brushArray[2]       = Brushes.Blue;
     this.BarBrushes     = brushArray;
     this.NameBrush      = new SolidBrush(Color.Black);
     this.NameFont       = new Font("Verdana", 7f);
     this.TextFont       = new Font("Verdana", 7f);
     this.CursorPen      = new Pen(Color.Black);
     this.ShowValueLabel = true;
     this.AxisX          = new FormulaAxisX();
     this.AxisXs         = new AxisXCollection();
     this.AxisXs.Add(this.AxisX);
     this.AxisY = new FormulaAxisY();
     this.Back  = new FormulaBack();
 }
 public virtual void Add(FormulaAxisY fay)
 {
     base.List.Add(fay);
 }
 public void Remove(FormulaAxisY value)
 {
     base.List.Remove(value);
 }