namespace Yw.WinFrmUI.Phart
{
public class XtrDiagram
{
///
/// 启用十字准线
///
public bool CrosshairEnabled { get; set; }
///
/// 背景颜色
///
public Color BackColor { get; set; }
///
/// 图例
///
public XtrLegend Legend { get; set; }
///
/// 扬程/效率面板
///
public XtrPane PaneHE { get; set; }
///
/// 功率面板
///
public XtrPane PaneP { get; set; }
///
/// 流量轴
///
public XtrAxis AxisQ { get; set; }
///
/// 流量扬程轴
///
public XtrAxis AxisQH { get; set; }
///
/// 流量效率轴
///
public XtrAxis AxisQE { get; set; }
///
/// 流量功率轴
///
public XtrAxis AxisQP { get; set; }
}
}