namespace Yw.WinFrmUI.Phart
{
///
///
///
public class AnnotationParasViewModel : JsonList
{
///
/// X轴值
///
public double X { get; set; }
///
/// Y轴值
///
public double Y { get; set; }
///
/// 内容
///
public string Text { get; set; }
///
/// 文本对齐方式
///
public eTextAligment Aligment { get; set; }
///
/// 标签
///
public string Tag { get; set; }
}
}