corelibraries-devexpress-dot-xtracharts-dot-annotation-e82fc109.md
Specifies the connector style of the annotation.
Namespace : DevExpress.XtraCharts
Assembly : DevExpress.XtraCharts.v25.2.dll
NuGet Package : DevExpress.Charts
[XtraChartsLocalizableCategory(XtraChartsCategory.Appearance)]
public AnnotationConnectorStyle ConnectorStyle { get; set; }
<XtraChartsLocalizableCategory(XtraChartsCategory.Appearance)>
Public Property ConnectorStyle As AnnotationConnectorStyle
| Type | Description |
|---|---|
| AnnotationConnectorStyle |
An AnnotationConnectorStyle enumeration value representing the connector style.
|
Available values:
| Name | Description |
|---|---|
| None |
The annotation connector is disabled.
| | Tail |
Represents the tail annotation connector style.
| | Arrow |
Represents the arrow annotation connector style.
| | NotchedArrow |
Represents the notched arrow annotation connector style.
| | Line |
Represents the line annotation connector style.
|
Refer to Annotations for more information.
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ConnectorStyle property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
myImageAnnotation.ShapeFillet = 10
myImageAnnotation.ConnectorStyle = AnnotationConnectorStyle.Arrow
End Sub
See Also