using RealTimeGraphEx; using RealTimeGraphEx.Controllers; using RealTimeGraphX; using RealTimeGraphX.WPF.DataSeries; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.MachineStudio.Common.Controls { public interface IRealTimeGraph { /// /// Gets or sets the name of the sensor. /// String DisplayName { get; set; } /// /// Gets or sets the tag. /// Object Tag { get; set; } /// /// Gets or sets the sensor units. /// String DisplayUnits { get; set; } /// /// Gets or sets the inner graph controller. /// IGraphController Controller { get; set; } } }