using MultiLayout.UiModule; namespace FLY.Thick.Blowing.UI.UiModule { public class ScanGraphCircularParam : UIModuleParam { /// /// 混合数 /// public int Mix { get; set; } = 1; /// /// 记录点 /// public int Number { get; set; } = 0; /// /// Y轴显示范围是公差的N倍 /// public double YRangePercent { get; set; } = 3; /// /// Y轴%显示 /// public bool IsPercent { get; set; } = true; /// /// Y轴自动目标值 /// public bool IsAutoTarget { get; set; } = true; /// /// 有额外的分区 /// public bool HasAlianZone { get; set; } /// /// 3点方向,对应的No /// public double AlianZoneBoltNoOf3oClock { get; set; } = 1; /// /// 额外分区数 /// public int AlianZoneBoltCnt { get; set; } = 8; /// /// 是逆时针排列 counter-clockwise /// public bool AlianZoneIsCCW { get; set; } = false; /// /// X轴线 显示为额外分区的间隔 /// public bool AlianZoneIsShowXStep { get; set; } = false; } }