123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.ComponentModel;
- using SciChart.Charting.Model.DataSeries;
- namespace MECF.Framework.UI.Client.ClientBase.Charting
- {
- public class ParameterNodePoint : IPointMetadata
- {
- #region Variables
- public event PropertyChangedEventHandler PropertyChanged;
- #endregion
- #region Constructors
- public ParameterNodePoint(DateTime time, double value)
- {
- Time = time;
- Value = value;
- }
- #endregion
- #region Properties
- internal DateTime Time { get; }
- internal double Value { get; }
- public bool IsSelected { get; set; }
- #endregion
- }
- }
|