123456789101112131415161718192021222324252627282930 |
- /************************************************************************
- *@file FrameworkLocal\UIClient\CenterViews\DataLogs\Core\FastLineDataSeries.cs
- * @author Su Liang
- * @Date 2022-08-02
- *
- * @copyright © Sicentury Inc.
- *
- * @brief Reconstructed to support rich functions.
- *
- * @details Cross-Thread operation allowed.
- *
- * *****************************************************************************/
- using System;
- using SciChart.Charting.Model.DataSeries;
- namespace MECF.Framework.UI.Client.ClientBase.Charting
- {
- public class FastLineDataSeries : XyDataSeries<DateTime, double>
- {
- #region Properties
- public double Factor { get; set; }
- public double Offset { get; set; }
- #endregion
- }
- }
|