ScanMmGraphItemParam.cs 563 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
using MultiLayout.UiModule;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace FLY.Thick.FilmCasting.UI.UiModule
{
    /// <summary>
    /// 扫描图的参数
    /// </summary>
    public class ScanMmGraphItemParam : ScanGraphItemParam
    {
        public ScanMmGraphItemParam() {
            UiModule = "scanMmGraph";
        }
        /// <summary>
        /// X轴显示为 分区号, 默认是mm
        /// </summary>
        public bool IsXShowBoltNo { get; set; }
    }
}