-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathAnnotation.xml
More file actions
2278 lines (2179 loc) · 167 KB
/
Annotation.xml
File metadata and controls
2278 lines (2179 loc) · 167 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<Type Name="Annotation" FullName="System.Windows.Forms.DataVisualization.Charting.Annotation">
<TypeSignature Language="C#" Value="public abstract class Annotation : System.Windows.Forms.DataVisualization.Charting.ChartNamedElement" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi abstract beforefieldinit Annotation extends System.Windows.Forms.DataVisualization.Charting.ChartNamedElement" />
<TypeSignature Language="DocId" Value="T:System.Windows.Forms.DataVisualization.Charting.Annotation" />
<TypeSignature Language="VB.NET" Value="Public MustInherit Class Annotation
Inherits ChartNamedElement" />
<TypeSignature Language="F#" Value="type Annotation = class
 inherit ChartNamedElement" />
<TypeSignature Language="C++ CLI" Value="public ref class Annotation abstract : System::Windows::Forms::DataVisualization::Charting::ChartNamedElement" />
<AssemblyInfo>
<AssemblyName>System.Windows.Forms.DataVisualization</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Windows.Forms.DataVisualization.Charting.ChartNamedElement</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultProperty("Name")]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultProperty("Name")>]</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary>Defines properties and methods common to all annotations. This is an abstract class.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
Annotations are commonly used to comment or elaborate on chart elements such as data points. Annotations can also be used to draw custom shapes.
By default, annotations are positioned using relative coordinates, with (0,0) representing the top-left corner, and (100,100) representing the bottom-right corner of the chart image. It is also possible to switch from this relative coordinate system to a system that uses axis values. With an axis coordinate system, X and Y, which represent the position of the top-left corner of an annotation, are set using X axis and Y axis values, instead of values that range from 0-100.
There are two ways to use axis values when you specify the position and size of an annotation:
- Set the <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.AxisX*>, <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.AxisY*> or both of these annotation properties to the <xref:System.Windows.Forms.DataVisualization.Charting.ChartArea.AxisX*> and <xref:System.Windows.Forms.DataVisualization.Charting.ChartArea.AxisY> property values of a <xref:System.Windows.Forms.DataVisualization.Charting.Series.ChartArea*> object.
- Use the <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorDataPoint> property to anchor the annotation to a data point. In this case, its positioning is automatically calculated.
All annotations are derived from the <xref:System.Windows.Forms.DataVisualization.Charting.Annotation> class, which can be used to set attributes common to all <xref:System.Windows.Forms.DataVisualization.Charting.Annotation> objects, such as color, position, anchoring and so forth.
]]></format>
</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected Annotation ();" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Windows.Forms.DataVisualization.Charting.Annotation.#ctor" />
<MemberSignature Language="VB.NET" Value="Protected Sub New ()" />
<MemberSignature Language="C++ CLI" Value="protected:
 Annotation();" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>System.Windows.Forms.DataVisualization</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters />
<Docs>
<summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataVisualization.Charting.Annotation" /> class. This is the parameterless constructor and should not be used.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
Annotation is an abstract class and cannot be created directly. To create a new annotation object, use constructors of classes such as <xref:System.Windows.Forms.DataVisualization.Charting.LineAnnotation>, <xref:System.Windows.Forms.DataVisualization.Charting.RectangleAnnotation>, and the like.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Alignment">
<MemberSignature Language="C#" Value="public virtual System.Drawing.ContentAlignment Alignment { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Drawing.ContentAlignment Alignment" />
<MemberSignature Language="DocId" Value="P:System.Windows.Forms.DataVisualization.Charting.Annotation.Alignment" />
<MemberSignature Language="VB.NET" Value="Public Overridable Property Alignment As ContentAlignment" />
<MemberSignature Language="F#" Value="member this.Alignment : System.Drawing.ContentAlignment with get, set" Usage="System.Windows.Forms.DataVisualization.Charting.Annotation.Alignment" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual property System::Drawing::ContentAlignment Alignment { System::Drawing::ContentAlignment get(); void set(System::Drawing::ContentAlignment value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Windows.Forms.DataVisualization</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultValue(typeof(System.Drawing.ContentAlignment), "MiddleCenter")]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultValue(typeof(System.Drawing.ContentAlignment), "MiddleCenter")>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Drawing.ContentAlignment</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the content alignment of an annotation.</summary>
<value>A <see cref="T:System.Drawing.ContentAlignment" /> enumeration value that represents the content alignment.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This property is used to align text for <xref:System.Windows.Forms.DataVisualization.Charting.TextAnnotation>, <xref:System.Windows.Forms.DataVisualization.Charting.RectangleAnnotation>, <xref:System.Windows.Forms.DataVisualization.Charting.EllipseAnnotation> and <xref:System.Windows.Forms.DataVisualization.Charting.CalloutAnnotation> objects, and to align a non-scaled image inside an <xref:System.Windows.Forms.DataVisualization.Charting.ImageAnnotation> object.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="AllowAnchorMoving">
<MemberSignature Language="C#" Value="public virtual bool AllowAnchorMoving { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool AllowAnchorMoving" />
<MemberSignature Language="DocId" Value="P:System.Windows.Forms.DataVisualization.Charting.Annotation.AllowAnchorMoving" />
<MemberSignature Language="VB.NET" Value="Public Overridable Property AllowAnchorMoving As Boolean" />
<MemberSignature Language="F#" Value="member this.AllowAnchorMoving : bool with get, set" Usage="System.Windows.Forms.DataVisualization.Charting.Annotation.AllowAnchorMoving" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual property bool AllowAnchorMoving { bool get(); void set(bool value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Windows.Forms.DataVisualization</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultValue(false)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultValue(false)>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a flag that specifies whether the end user is allowed to move the annotation anchor using a mouse.</summary>
<value>
<see langword="true" /> if the annotation anchor may be moved; otherwise, <see langword="false" />.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="AllowMoving">
<MemberSignature Language="C#" Value="public virtual bool AllowMoving { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool AllowMoving" />
<MemberSignature Language="DocId" Value="P:System.Windows.Forms.DataVisualization.Charting.Annotation.AllowMoving" />
<MemberSignature Language="VB.NET" Value="Public Overridable Property AllowMoving As Boolean" />
<MemberSignature Language="F#" Value="member this.AllowMoving : bool with get, set" Usage="System.Windows.Forms.DataVisualization.Charting.Annotation.AllowMoving" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual property bool AllowMoving { bool get(); void set(bool value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Windows.Forms.DataVisualization</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultValue(false)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultValue(false)>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a flag that specifies whether the end user is allowed to move an annotation using a mouse.</summary>
<value>
<see langword="true" /> if the annotation may be moved; otherwise, <see langword="false" />.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="AllowPathEditing">
<MemberSignature Language="C#" Value="public virtual bool AllowPathEditing { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool AllowPathEditing" />
<MemberSignature Language="DocId" Value="P:System.Windows.Forms.DataVisualization.Charting.Annotation.AllowPathEditing" />
<MemberSignature Language="VB.NET" Value="Public Overridable Property AllowPathEditing As Boolean" />
<MemberSignature Language="F#" Value="member this.AllowPathEditing : bool with get, set" Usage="System.Windows.Forms.DataVisualization.Charting.Annotation.AllowPathEditing" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual property bool AllowPathEditing { bool get(); void set(bool value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Windows.Forms.DataVisualization</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultValue(false)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultValue(false)>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a flag that specifies whether the end user is allowed to move the points of a polygon annotation using a mouse.</summary>
<value>
<see langword="true" /> if the polygon annotation's points may be moved; otherwise, <see langword="false" />.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This property needs to be set to `true` to free draw a polyline annotation.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="AllowResizing">
<MemberSignature Language="C#" Value="public virtual bool AllowResizing { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool AllowResizing" />
<MemberSignature Language="DocId" Value="P:System.Windows.Forms.DataVisualization.Charting.Annotation.AllowResizing" />
<MemberSignature Language="VB.NET" Value="Public Overridable Property AllowResizing As Boolean" />
<MemberSignature Language="F#" Value="member this.AllowResizing : bool with get, set" Usage="System.Windows.Forms.DataVisualization.Charting.Annotation.AllowResizing" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual property bool AllowResizing { bool get(); void set(bool value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Windows.Forms.DataVisualization</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultValue(false)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultValue(false)>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a flag that specifies whether the end user is allowed to resize an annotation using a mouse.</summary>
<value>
<see langword="true" /> if the annotation may be resized; otherwise, <see langword="false" />.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="AllowSelecting">
<MemberSignature Language="C#" Value="public virtual bool AllowSelecting { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool AllowSelecting" />
<MemberSignature Language="DocId" Value="P:System.Windows.Forms.DataVisualization.Charting.Annotation.AllowSelecting" />
<MemberSignature Language="VB.NET" Value="Public Overridable Property AllowSelecting As Boolean" />
<MemberSignature Language="F#" Value="member this.AllowSelecting : bool with get, set" Usage="System.Windows.Forms.DataVisualization.Charting.Annotation.AllowSelecting" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual property bool AllowSelecting { bool get(); void set(bool value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Windows.Forms.DataVisualization</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultValue(false)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultValue(false)>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a flag that specifies whether the end user is allowed to select an annotation using a mouse.</summary>
<value>
<see langword="true" /> if the annotation may be selected; otherwise <see langword="false" />.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="AllowTextEditing">
<MemberSignature Language="C#" Value="public virtual bool AllowTextEditing { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool AllowTextEditing" />
<MemberSignature Language="DocId" Value="P:System.Windows.Forms.DataVisualization.Charting.Annotation.AllowTextEditing" />
<MemberSignature Language="VB.NET" Value="Public Overridable Property AllowTextEditing As Boolean" />
<MemberSignature Language="F#" Value="member this.AllowTextEditing : bool with get, set" Usage="System.Windows.Forms.DataVisualization.Charting.Annotation.AllowTextEditing" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual property bool AllowTextEditing { bool get(); void set(bool value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Windows.Forms.DataVisualization</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultValue(false)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultValue(false)>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a flag that specifies whether the text in an annotation may be edited when the end user double clicks the text.</summary>
<value>
<see langword="true" /> if the annotation text may be edited; otherwise, <see langword="false" />.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="AnchorAlignment">
<MemberSignature Language="C#" Value="public virtual System.Drawing.ContentAlignment AnchorAlignment { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Drawing.ContentAlignment AnchorAlignment" />
<MemberSignature Language="DocId" Value="P:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorAlignment" />
<MemberSignature Language="VB.NET" Value="Public Overridable Property AnchorAlignment As ContentAlignment" />
<MemberSignature Language="F#" Value="member this.AnchorAlignment : System.Drawing.ContentAlignment with get, set" Usage="System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorAlignment" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual property System::Drawing::ContentAlignment AnchorAlignment { System::Drawing::ContentAlignment get(); void set(System::Drawing::ContentAlignment value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Windows.Forms.DataVisualization</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultValue(typeof(System.Drawing.ContentAlignment), "BottomCenter")]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultValue(typeof(System.Drawing.ContentAlignment), "BottomCenter")>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Drawing.ContentAlignment</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the alignment of an annotation to the anchor point.</summary>
<value>A <see cref="T:System.Drawing.ContentAlignment" /> enumeration value that represents the alignment of the annotation to the anchor point.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The annotation must be anchored by either using the <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorDataPoint> property, or by setting the <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorX*> and <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorY*> properties. Its <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.X*> and <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.Y*> properties must be set to <xref:System.Double.NaN>.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="AnchorDataPoint">
<MemberSignature Language="C#" Value="public virtual System.Windows.Forms.DataVisualization.Charting.DataPoint AnchorDataPoint { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Windows.Forms.DataVisualization.Charting.DataPoint AnchorDataPoint" />
<MemberSignature Language="DocId" Value="P:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorDataPoint" />
<MemberSignature Language="VB.NET" Value="Public Overridable Property AnchorDataPoint As DataPoint" />
<MemberSignature Language="F#" Value="member this.AnchorDataPoint : System.Windows.Forms.DataVisualization.Charting.DataPoint with get, set" Usage="System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorDataPoint" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual property System::Windows::Forms::DataVisualization::Charting::DataPoint ^ AnchorDataPoint { System::Windows::Forms::DataVisualization::Charting::DataPoint ^ get(); void set(System::Windows::Forms::DataVisualization::Charting::DataPoint ^ value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Windows.Forms.DataVisualization</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultValue(null)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultValue(null)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[System.ComponentModel.Editor("System.Windows.Forms.Design.DataVisualization.Charting.AnchorPointUITypeEditor, System.Windows.Forms.DataVisualization.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "System.Drawing.Design.UITypeEditor")]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.Editor("System.Windows.Forms.Design.DataVisualization.Charting.AnchorPointUITypeEditor, System.Windows.Forms.DataVisualization.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "System.Drawing.Design.UITypeEditor")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.DataVisualization.Charting.AnchorPointValueConverter))]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.DataVisualization.Charting.AnchorPointValueConverter))>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1">
<AttributeName Language="C#">[System.ComponentModel.Editor("System.Windows.Forms.Design.DataVisualization.Charting.AnchorPointUITypeEditor, System.Windows.Forms.DataVisualization.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.Editor("System.Windows.Forms.Design.DataVisualization.Charting.AnchorPointUITypeEditor, System.Windows.Forms.DataVisualization.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Windows.Forms.DataVisualization.Charting.DataPoint</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the data point to which an annotation is anchored.</summary>
<value>A <see cref="T:System.Windows.Forms.DataVisualization.Charting.DataPoint" /> object to which an annotation is anchored.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The annotation is anchored to the X and Y values of the specified data point, and automatically uses the same axes coordinates as the data point.
To automatically position the annotation relative to the anchor point, make sure its <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.X*> and <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.Y*> properties are set to <xref:System.Double.NaN>. The <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorAlignment> property can be used to change the automatic position alignment of the annotation to the anchor point. The <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorOffsetX*> and <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorOffsetY*> properties may be used to add extra spacing.
When you use this property, make sure the <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorX*> and <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorY*> properties are set to Double.NaN, as they have precedence.
Set this value to `null` to disable annotation anchoring to a data point.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="AnchorDataPointName">
<MemberSignature Language="C#" Value="public virtual string AnchorDataPointName { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance string AnchorDataPointName" />
<MemberSignature Language="DocId" Value="P:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorDataPointName" />
<MemberSignature Language="VB.NET" Value="Public Overridable Property AnchorDataPointName As String" />
<MemberSignature Language="F#" Value="member this.AnchorDataPointName : string with get, set" Usage="System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorDataPointName" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual property System::String ^ AnchorDataPointName { System::String ^ get(); void set(System::String ^ value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Windows.Forms.DataVisualization</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.Bindable(false)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.Bindable(false)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.Browsable(false)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.Browsable(false)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultValue("")]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultValue("")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the name of a data point to which an annotation is anchored.</summary>
<value>A <see langword="string" /> value that represents the name of the data point that an annotation is anchored to.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="AnchorOffsetX">
<MemberSignature Language="C#" Value="public virtual double AnchorOffsetX { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance float64 AnchorOffsetX" />
<MemberSignature Language="DocId" Value="P:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorOffsetX" />
<MemberSignature Language="VB.NET" Value="Public Overridable Property AnchorOffsetX As Double" />
<MemberSignature Language="F#" Value="member this.AnchorOffsetX : double with get, set" Usage="System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorOffsetX" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual property double AnchorOffsetX { double get(); void set(double value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Windows.Forms.DataVisualization</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultValue(0)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultValue(0)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.All)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.All)>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the offset from the anchor point for the X position of an annotation.</summary>
<value>A <see langword="double" /> value that represents the offset of the X position from the anchor point.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The annotation must be anchored using either the <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorDataPoint*> or the <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorX> property, and its <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.X> property must be set to <xref:System.Double.NaN>.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="AnchorOffsetY">
<MemberSignature Language="C#" Value="public virtual double AnchorOffsetY { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance float64 AnchorOffsetY" />
<MemberSignature Language="DocId" Value="P:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorOffsetY" />
<MemberSignature Language="VB.NET" Value="Public Overridable Property AnchorOffsetY As Double" />
<MemberSignature Language="F#" Value="member this.AnchorOffsetY : double with get, set" Usage="System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorOffsetY" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual property double AnchorOffsetY { double get(); void set(double value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Windows.Forms.DataVisualization</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultValue(0)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultValue(0)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.All)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.All)>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the offset from the anchor point for the Y position of an annotation.</summary>
<value>A <see langword="double" /> value that represents the offset of the Y position from the anchor point.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The annotation must be anchored using either the <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorDataPoint*> or <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorY> property, and its <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.Y> property must be set to <xref:System.Double.NaN>.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="AnchorX">
<MemberSignature Language="C#" Value="public virtual double AnchorX { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance float64 AnchorX" />
<MemberSignature Language="DocId" Value="P:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorX" />
<MemberSignature Language="VB.NET" Value="Public Overridable Property AnchorX As Double" />
<MemberSignature Language="F#" Value="member this.AnchorX : double with get, set" Usage="System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorX" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual property double AnchorX { double get(); void set(double value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Windows.Forms.DataVisualization</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultValue(NaN)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultValue(NaN)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.All)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.All)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.DataVisualization.Charting.DoubleNanValueConverter))]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.DataVisualization.Charting.DoubleNanValueConverter))>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the X coordinate to which the annotation is anchored.</summary>
<value>A <see langword="double" /> value that represents the X coordinate an annotation is anchored to.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The annotation is anchored to the X coordinate and is specified in relative chart or axes coordinates, depending on the <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.AxisX> property value.
To automatically position an annotation relative to an anchor point, make sure its <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.X> property is set to <xref:System.Double.NaN>. The <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorAlignment> property can be used to change the automatic position alignment of the annotation to the anchor point. The <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorOffsetX*> and <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorOffsetY*> properties may be used to add extra spacing.
This property has a higher priority than the <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorDataPoint> property.
Set this value to <xref:System.Double.NaN> to disable annotation anchoring to the value.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="AnchorY">
<MemberSignature Language="C#" Value="public virtual double AnchorY { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance float64 AnchorY" />
<MemberSignature Language="DocId" Value="P:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorY" />
<MemberSignature Language="VB.NET" Value="Public Overridable Property AnchorY As Double" />
<MemberSignature Language="F#" Value="member this.AnchorY : double with get, set" Usage="System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorY" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual property double AnchorY { double get(); void set(double value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Windows.Forms.DataVisualization</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultValue(NaN)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultValue(NaN)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.All)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.All)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.DataVisualization.Charting.DoubleNanValueConverter))]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.DataVisualization.Charting.DoubleNanValueConverter))>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the Y coordinate to which the annotation is anchored.</summary>
<value>A <see langword="double" /> value that represents the Y coordinate an annotation is anchored to.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The annotation is anchored to the Y coordinate and is specified in relative chart or axes coordinates, depending on the <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.AxisX> property value.
To automatically position an annotation relative to an anchor point make sure its <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.Y> property is set to <xref:System.Double.NaN>. The <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorAlignment> property can be used to change the automatic position alignment of the annotation to the anchor point. The <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorOffsetX*> and <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorOffsetY*> properties may be used to add extra spacing.
This property has a higher priority than the <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.AnchorDataPoint> property.
Set this value to <xref:System.Double.NaN> to disable annotation anchoring to the value.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="AnnotationGroup">
<MemberSignature Language="C#" Value="public System.Windows.Forms.DataVisualization.Charting.AnnotationGroup AnnotationGroup { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Windows.Forms.DataVisualization.Charting.AnnotationGroup AnnotationGroup" />
<MemberSignature Language="DocId" Value="P:System.Windows.Forms.DataVisualization.Charting.Annotation.AnnotationGroup" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property AnnotationGroup As AnnotationGroup" />
<MemberSignature Language="F#" Value="member this.AnnotationGroup : System.Windows.Forms.DataVisualization.Charting.AnnotationGroup" Usage="System.Windows.Forms.DataVisualization.Charting.Annotation.AnnotationGroup" />
<MemberSignature Language="C++ CLI" Value="public:
 property System::Windows::Forms::DataVisualization::Charting::AnnotationGroup ^ AnnotationGroup { System::Windows::Forms::DataVisualization::Charting::AnnotationGroup ^ get(); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Windows.Forms.DataVisualization</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.Browsable(false)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.Browsable(false)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Windows.Forms.DataVisualization.Charting.AnnotationGroup</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the group, if any, to which the annotation belongs.</summary>
<value>An <see cref="T:System.Windows.Forms.DataVisualization.Charting.AnnotationGroup" /> object that represents the group which the annotation belongs to.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="AnnotationType">
<MemberSignature Language="C#" Value="public abstract string AnnotationType { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance string AnnotationType" />
<MemberSignature Language="DocId" Value="P:System.Windows.Forms.DataVisualization.Charting.Annotation.AnnotationType" />
<MemberSignature Language="VB.NET" Value="Public MustOverride ReadOnly Property AnnotationType As String" />
<MemberSignature Language="F#" Value="member this.AnnotationType : string" Usage="System.Windows.Forms.DataVisualization.Charting.Annotation.AnnotationType" />
<MemberSignature Language="C++ CLI" Value="public:
 abstract property System::String ^ AnnotationType { System::String ^ get(); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Windows.Forms.DataVisualization</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.Bindable(true)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.Bindable(true)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.Browsable(false)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.Browsable(false)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets an annotation's type name.</summary>
<value>The annotation type.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This property is used to get the name of each annotation type, for example, Line, Rectangle, Ellipse, and so forth.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="AxisX">
<MemberSignature Language="C#" Value="public virtual System.Windows.Forms.DataVisualization.Charting.Axis AxisX { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Windows.Forms.DataVisualization.Charting.Axis AxisX" />
<MemberSignature Language="DocId" Value="P:System.Windows.Forms.DataVisualization.Charting.Annotation.AxisX" />
<MemberSignature Language="VB.NET" Value="Public Overridable Property AxisX As Axis" />
<MemberSignature Language="F#" Value="member this.AxisX : System.Windows.Forms.DataVisualization.Charting.Axis with get, set" Usage="System.Windows.Forms.DataVisualization.Charting.Annotation.AxisX" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual property System::Windows::Forms::DataVisualization::Charting::Axis ^ AxisX { System::Windows::Forms::DataVisualization::Charting::Axis ^ get(); void set(System::Windows::Forms::DataVisualization::Charting::Axis ^ value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Windows.Forms.DataVisualization</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultValue(null)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultValue(null)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[System.ComponentModel.Editor("System.Windows.Forms.Design.DataVisualization.Charting.AnnotationAxisUITypeEditor, System.Windows.Forms.DataVisualization.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "System.Drawing.Design.UITypeEditor")]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.Editor("System.Windows.Forms.Design.DataVisualization.Charting.AnnotationAxisUITypeEditor, System.Windows.Forms.DataVisualization.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "System.Drawing.Design.UITypeEditor")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.DataVisualization.Charting.AnnotationAxisValueConverter))]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.DataVisualization.Charting.AnnotationAxisValueConverter))>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1">
<AttributeName Language="C#">[System.ComponentModel.Editor("System.Windows.Forms.Design.DataVisualization.Charting.AnnotationAxisUITypeEditor, System.Windows.Forms.DataVisualization.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.Editor("System.Windows.Forms.Design.DataVisualization.Charting.AnnotationAxisUITypeEditor, System.Windows.Forms.DataVisualization.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Windows.Forms.DataVisualization.Charting.Axis</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the X axis to which an annotation is attached.</summary>
<value>An <see cref="T:System.Windows.Forms.DataVisualization.Charting.Axis" /> object to which the annotation is attached.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
When an annotation is attached to an axis, its X position is always specified in axes coordinates. To also define the size of an annotation in axes coordinates, make sure the <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.IsSizeAlwaysRelative> property is set to `false`.
Set this value to `null` to disable attachment to the axis.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="AxisXName">
<MemberSignature Language="C#" Value="public virtual string AxisXName { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance string AxisXName" />
<MemberSignature Language="DocId" Value="P:System.Windows.Forms.DataVisualization.Charting.Annotation.AxisXName" />
<MemberSignature Language="VB.NET" Value="Public Overridable Property AxisXName As String" />
<MemberSignature Language="F#" Value="member this.AxisXName : string with get, set" Usage="System.Windows.Forms.DataVisualization.Charting.Annotation.AxisXName" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual property System::String ^ AxisXName { System::String ^ get(); void set(System::String ^ value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Windows.Forms.DataVisualization</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.Bindable(false)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.Bindable(false)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.Browsable(false)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.Browsable(false)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultValue("")]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultValue("")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the name of the X axis to which an annotation is attached.</summary>
<value>A <see langword="string" /> value that represents the name of the X axis which an annotation is attached to.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="AxisY">
<MemberSignature Language="C#" Value="public virtual System.Windows.Forms.DataVisualization.Charting.Axis AxisY { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Windows.Forms.DataVisualization.Charting.Axis AxisY" />
<MemberSignature Language="DocId" Value="P:System.Windows.Forms.DataVisualization.Charting.Annotation.AxisY" />
<MemberSignature Language="VB.NET" Value="Public Overridable Property AxisY As Axis" />
<MemberSignature Language="F#" Value="member this.AxisY : System.Windows.Forms.DataVisualization.Charting.Axis with get, set" Usage="System.Windows.Forms.DataVisualization.Charting.Annotation.AxisY" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual property System::Windows::Forms::DataVisualization::Charting::Axis ^ AxisY { System::Windows::Forms::DataVisualization::Charting::Axis ^ get(); void set(System::Windows::Forms::DataVisualization::Charting::Axis ^ value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Windows.Forms.DataVisualization</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultValue(null)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultValue(null)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[System.ComponentModel.Editor("System.Windows.Forms.Design.DataVisualization.Charting.AnnotationAxisUITypeEditor, System.Windows.Forms.DataVisualization.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "System.Drawing.Design.UITypeEditor")]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.Editor("System.Windows.Forms.Design.DataVisualization.Charting.AnnotationAxisUITypeEditor, System.Windows.Forms.DataVisualization.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "System.Drawing.Design.UITypeEditor")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.DataVisualization.Charting.AnnotationAxisValueConverter))]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.DataVisualization.Charting.AnnotationAxisValueConverter))>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1">
<AttributeName Language="C#">[System.ComponentModel.Editor("System.Windows.Forms.Design.DataVisualization.Charting.AnnotationAxisUITypeEditor, System.Windows.Forms.DataVisualization.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.Editor("System.Windows.Forms.Design.DataVisualization.Charting.AnnotationAxisUITypeEditor, System.Windows.Forms.DataVisualization.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Windows.Forms.DataVisualization.Charting.Axis</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the Y axis to which an annotation is attached.</summary>
<value>An <see cref="T:System.Windows.Forms.DataVisualization.Charting.Axis" /> object to which this annotation is attached.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
When an annotation is attached to an axis, its Y position is always specified in axes coordinates. To also define the size of an annotation in axes coordinates, make sure the <xref:System.Windows.Forms.DataVisualization.Charting.Annotation.IsSizeAlwaysRelative> property is set to `false`.
Set to `null` to disable annotation attachment to an axis.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="AxisYName">
<MemberSignature Language="C#" Value="public virtual string AxisYName { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance string AxisYName" />
<MemberSignature Language="DocId" Value="P:System.Windows.Forms.DataVisualization.Charting.Annotation.AxisYName" />
<MemberSignature Language="VB.NET" Value="Public Overridable Property AxisYName As String" />
<MemberSignature Language="F#" Value="member this.AxisYName : string with get, set" Usage="System.Windows.Forms.DataVisualization.Charting.Annotation.AxisYName" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual property System::String ^ AxisYName { System::String ^ get(); void set(System::String ^ value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Windows.Forms.DataVisualization</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.Bindable(false)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.Bindable(false)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.Browsable(false)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.Browsable(false)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultValue("")]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultValue("")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the name of the Y axis which an annotation is attached to.</summary>
<value>A <see langword="string" /> value that represents the name of the Y axis that an annotation is attached to.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BackColor">
<MemberSignature Language="C#" Value="public virtual System.Drawing.Color BackColor { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Drawing.Color BackColor" />
<MemberSignature Language="DocId" Value="P:System.Windows.Forms.DataVisualization.Charting.Annotation.BackColor" />
<MemberSignature Language="VB.NET" Value="Public Overridable Property BackColor As Color" />
<MemberSignature Language="F#" Value="member this.BackColor : System.Drawing.Color with get, set" Usage="System.Windows.Forms.DataVisualization.Charting.Annotation.BackColor" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual property System::Drawing::Color BackColor { System::Drawing::Color get(); void set(System::Drawing::Color value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Windows.Forms.DataVisualization</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultValue(typeof(System.Drawing.Color), "")]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultValue(typeof(System.Drawing.Color), "")>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[System.ComponentModel.Editor("System.Windows.Forms.Design.DataVisualization.Charting.ChartColorEditor, System.Windows.Forms.DataVisualization.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "System.Drawing.Design.UITypeEditor")]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.Editor("System.Windows.Forms.Design.DataVisualization.Charting.ChartColorEditor, System.Windows.Forms.DataVisualization.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "System.Drawing.Design.UITypeEditor")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.NotifyParentProperty(true)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.NotifyParentProperty(true)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.TypeConverter(typeof(System.Drawing.ColorConverter))]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.TypeConverter(typeof(System.Drawing.ColorConverter))>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1">
<AttributeName Language="C#">[System.ComponentModel.Editor("System.Windows.Forms.Design.DataVisualization.Charting.ChartColorEditor, System.Windows.Forms.DataVisualization.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.Editor("System.Windows.Forms.Design.DataVisualization.Charting.ChartColorEditor, System.Windows.Forms.DataVisualization.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Drawing.Color</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the color of an annotation background.</summary>
<value>A <see cref="T:System.Drawing.Color" /> value used to draw an annotation background.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This property does not apply to line-type annotations, image annotations and text annotations.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="BackGradientStyle">
<MemberSignature Language="C#" Value="public virtual System.Windows.Forms.DataVisualization.Charting.GradientStyle BackGradientStyle { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Windows.Forms.DataVisualization.Charting.GradientStyle BackGradientStyle" />
<MemberSignature Language="DocId" Value="P:System.Windows.Forms.DataVisualization.Charting.Annotation.BackGradientStyle" />
<MemberSignature Language="VB.NET" Value="Public Overridable Property BackGradientStyle As GradientStyle" />
<MemberSignature Language="F#" Value="member this.BackGradientStyle : System.Windows.Forms.DataVisualization.Charting.GradientStyle with get, set" Usage="System.Windows.Forms.DataVisualization.Charting.Annotation.BackGradientStyle" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual property System::Windows::Forms::DataVisualization::Charting::GradientStyle BackGradientStyle { System::Windows::Forms::DataVisualization::Charting::GradientStyle get(); void set(System::Windows::Forms::DataVisualization::Charting::GradientStyle value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Windows.Forms.DataVisualization</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultValue(System.Windows.Forms.DataVisualization.Charting.GradientStyle.None)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultValue(System.Windows.Forms.DataVisualization.Charting.GradientStyle.None)>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[System.ComponentModel.Editor("System.Windows.Forms.Design.DataVisualization.Charting.GradientEditor, System.Windows.Forms.DataVisualization.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "System.Drawing.Design.UITypeEditor")]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.Editor("System.Windows.Forms.Design.DataVisualization.Charting.GradientEditor, System.Windows.Forms.DataVisualization.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "System.Drawing.Design.UITypeEditor")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.NotifyParentProperty(true)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.NotifyParentProperty(true)>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">