示例#1
0
 public ValueTick(TickType tickType, double value, string label, TextAnchor textAnchor, TextAnchor rotationAnchor, double angle)
   : base(label, textAnchor, rotationAnchor, angle)
 {
   ValueTick valueTick = this;
   this.value = value;
   this.tickType = tickType;
 }
示例#2
0
 public NumberTick(TickType tickType, double value, string label, TextAnchor textAnchor, TextAnchor rotationAnchor, double angle)
   : base(tickType, value, label, textAnchor, rotationAnchor, angle)
 {
   NumberTick numberTick = this;
   this.number = (Number) new Double(value);
 }