Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

DataLabelBase.LabelPosition Property

Gets or sets the position of data labels on the chart.

Namespace: DevExpress.Spreadsheet.Charts

Assembly: DevExpress.Spreadsheet.v19.1.Core.dll

Declaration

DataLabelPosition LabelPosition { get; set; }

Property Value

Type Description
DataLabelPosition

A DataLabelPosition enumeration value specifying the data label placement.

Example

The example below demonstrates how to create the clustered column chart and display its data labels by setting the DataLabelBase.ShowValue property to true. To specify the location of data labels on the chart, use the DataLabelBase.LabelPosition property. In this example, the DataLabelPosition.Center value is used, so data labels will be displayed centered inside columns.

Dim worksheet As Worksheet = workbook.Worksheets("chartTask3")
workbook.Worksheets.ActiveWorksheet = worksheet

' Create a chart and specify its location.
Dim chart As Chart = worksheet.Charts.Add(ChartType.ColumnClustered, worksheet("B2:D4"))
chart.TopLeftCell = worksheet.Cells("H2")
chart.BottomRightCell = worksheet.Cells("N14")

' Display data labels and specify their position within the chart.
chart.Views(0).DataLabels.ShowValue = True
chart.Views(0).DataLabels.LabelPosition = DataLabelPosition.Center

The following code snippets (auto-collected from DevExpress Examples) contain references to the LabelPosition 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.

See Also