FastLineDataSeries.cs 772 B

123456789101112131415161718192021222324252627282930
  1. /************************************************************************
  2. *@file FrameworkLocal\UIClient\CenterViews\DataLogs\Core\FastLineDataSeries.cs
  3. * @author Su Liang
  4. * @Date 2022-08-02
  5. *
  6. * @copyright &copy Sicentury Inc.
  7. *
  8. * @brief Reconstructed to support rich functions.
  9. *
  10. * @details Cross-Thread operation allowed.
  11. *
  12. * *****************************************************************************/
  13. using System;
  14. using SciChart.Charting.Model.DataSeries;
  15. namespace MECF.Framework.UI.Client.ClientBase.Charting
  16. {
  17. public class FastLineDataSeries : XyDataSeries<DateTime, double>
  18. {
  19. #region Properties
  20. public double Factor { get; set; }
  21. public double Offset { get; set; }
  22. #endregion
  23. }
  24. }