using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RealTimeGraphX.EventArguments
{
///
/// Represents a graph range change event arguments.
///
///
public class RangeChangedEventArgs : EventArgs
{
///
/// Gets or sets the minimum.
///
public GraphDataPointBase Minimum { get; set; }
///
/// Gets or sets the maximum.
///
public GraphDataPointBase Maximum { get; set; }
///
/// Initializes a new instance of the class.
///
public RangeChangedEventArgs()
{
}
///
/// Initializes a new instance of the class.
///
/// The minimum.
/// The maximum.
public RangeChangedEventArgs(GraphDataPointBase minimum, GraphDataPointBase maximum) : this()
{
Minimum = minimum;
Maximum = maximum;
}
}
}