namespace Yw.WinFrmUI.Phart.Core { public class XtrTextAnnotation : XtrBase { /// /// 内容 /// public string Text { get; set; } /// /// 字体 /// public XtrFont Font { get; set; } /// /// 背景色 /// public Color BackColor { get; set; } /// /// 边框 /// public XtrBorder Border { get; set; } /// /// 自动高 /// public bool AutoHeight { get; set; } /// /// 自动宽 /// public bool AutoWidth { get; set; } /// /// 锚点位置 /// public DevExpress.XtraCharts.ChartAnchorPoint AnchorPoint { get; set; } /// /// 大小 /// public Size Size { get; set; } // /// 对齐方式(如左对齐、居中等) /// public System.Windows.TextAlignment Alignment { get; set; } /// /// 连接样式 /// public DevExpress.XtraCharts.AnnotationConnectorStyle ConnectorStyle { get; set; } /// /// 位置角度 /// public double ShapePositionAngle { get; set; } } }