3 overrides of AnchorAlignment
System.Web.DataVisualization (3)
Common\Annotation\ArrowAnnotation.cs (1)
221 override public ContentAlignment AnchorAlignment
Common\Annotation\CalloutAnnotation.cs (1)
529 override public ContentAlignment AnchorAlignment
Common\Annotation\LineAnnotation.cs (1)
432 override public ContentAlignment AnchorAlignment
4 writes to AnchorAlignment
System.Web.DataVisualization (4)
Common\Annotation\ArrowAnnotation.cs (2)
121base.AnchorAlignment = ContentAlignment.TopLeft; 229 base.AnchorAlignment = value;
Common\Annotation\CalloutAnnotation.cs (1)
537 base.AnchorAlignment = value;
Common\Annotation\LineAnnotation.cs (1)
440 base.AnchorAlignment = value;
24 references to AnchorAlignment
System.Web.DataVisualization (24)
Common\Annotation\AnnotationBase.cs (20)
1471 /// <seealso cref="AnchorAlignment"/> 1488 /// The <see cref="AnchorAlignment"/> property may be used to change an annotation's 1533 /// <seealso cref="AnchorAlignment"/> 1545 /// The <see cref="AnchorAlignment"/> property may be used to change the annotation's 1582 /// <seealso cref="AnchorAlignment"/> 1594 /// The <see cref="AnchorAlignment"/> property may be used to change the annotation's 1631 /// <seealso cref="AnchorAlignment"/> 1670/// <seealso cref="Annotation.AnchorAlignment"/> 2535 if(this.AnchorAlignment == ContentAlignment.TopCenter || 2536 this.AnchorAlignment == ContentAlignment.TopLeft || 2537 this.AnchorAlignment == ContentAlignment.TopRight) 2542 else if(this.AnchorAlignment == ContentAlignment.BottomCenter || 2543 this.AnchorAlignment == ContentAlignment.BottomLeft || 2544 this.AnchorAlignment == ContentAlignment.BottomRight) 2595 if(this.AnchorAlignment == ContentAlignment.BottomLeft || 2596 this.AnchorAlignment == ContentAlignment.MiddleLeft || 2597 this.AnchorAlignment == ContentAlignment.TopLeft) 2602 else if(this.AnchorAlignment == ContentAlignment.BottomRight || 2603 this.AnchorAlignment == ContentAlignment.MiddleRight || 2604 this.AnchorAlignment == ContentAlignment.TopRight)
Common\Annotation\ArrowAnnotation.cs (1)
225 return base.AnchorAlignment;
Common\Annotation\CalloutAnnotation.cs (2)
479 /// <seealso cref="Annotation.AnchorAlignment"/> 533 return base.AnchorAlignment;
Common\Annotation\LineAnnotation.cs (1)
436 return base.AnchorAlignment;