public virtual bool Equals(PlottingRangeBase obj) { if (obj == null) { return(false); } return(this.ValuePadding == obj.ValuePadding); }
public override bool Equals(PlottingRangeBase obj) { if (!base.Equals(obj)) { return(false); } var other = obj as CategoryPlottingRange; return(this.ValuePadding == obj.ValuePadding && this.PlottingItemValues.SequenceEqual(other.PlottingItemValues)); }
public override bool Equals(PlottingRangeBase obj) { if (!base.Equals(obj)) { return(false); } var other = obj as NumericPlottingRange; if (other == null) { return(false); } return(this.ActualRange == other.ActualRange); }