You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
997 B
45 lines
997 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace QMAPP.WinForm.Common.SPCMonitor
|
|
{
|
|
/// <summary>
|
|
/// 描述:图表坐标模型
|
|
/// 作者:单雨春
|
|
/// 时间:2015年5月28日10:59:45
|
|
/// </summary>
|
|
public class ChartValueModel
|
|
{
|
|
/// <summary>
|
|
/// 坐标最大值
|
|
/// </summary>
|
|
public double MaxOfCoord { get; set; }
|
|
|
|
/// <summary>
|
|
/// 坐标最小值
|
|
/// </summary>
|
|
public double MinOfCoord { get; set; }
|
|
|
|
/// <summary>
|
|
/// 中间值
|
|
/// </summary>
|
|
public double Middle { get; set; }
|
|
|
|
/// <summary>
|
|
/// 间隔
|
|
/// </summary>
|
|
public double Step { get; set; }
|
|
|
|
/// <summary>
|
|
/// 最大值
|
|
/// </summary>
|
|
public double Max { get; set; }
|
|
|
|
/// <summary>
|
|
/// 最小值
|
|
/// </summary>
|
|
public double Min { get; set; }
|
|
}
|
|
}
|
|
|