• 潘栩锋's avatar
    和美安装包_v6.22.1 -20210414 · 329a3a93
    潘栩锋 authored
    1. 修复 收卷 设备连接变量表_v3_全部合体-20210302 内外收卷设定m,收卷预警m 为放大0.1倍
    2. 修复 限制纵向趋势图配置参数大小
    329a3a93
TrendGraphItemParam2.cs 1.62 KB
using MultiLayout.UiModule;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace FLY.Thick.Blowing.UI.Fix.Client.UiModule
{
    /// <summary>
    /// 纵向图的参数
    /// </summary>
    public class TrendGraphItemParam2 : UIModuleParam
    {
        private int interval = 1;
        /// <summary>
        /// 间隔, 只显示 ID % Interval == 0 的数
        /// </summary>
        public int Interval 
        {
            get { return interval; }
            set {
                if (value < 1) {
                    value = 1;
                }
                if (interval != value) {
                    interval = value;
                }
            }
        }

        private double yRangePercent = 3;
        /// <summary>
        /// Y轴比例
        /// </summary>
        public double YRangePercent
        {
            get { return yRangePercent; }
            set
            {
                if (value < 1)
                {
                    value = 1;
                }
                if (yRangePercent != value)
                {
                    yRangePercent = value;
                }
            }
        }

        private int mix = 1;
        /// <summary>
        /// 混合图
        /// </summary>
        public int Mix
        {
            get { return mix; }
            set
            {
                if (value < 1)
                {
                    value = 1;
                }
                if (mix != value)
                {
                    mix = value;
                }
            }
        }
    }
}