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

DataLabelOptions Interface

Contains data label options.

Namespace: DevExpress.Spreadsheet.Charts

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

Declaration

public interface DataLabelOptions :
    DataLabelBase,
    ShapeFormat,
    ShapeFormatBase,
    ShapeTextFormat

Remarks

The DataLabelOptions interface contains specific settings for data labels displayed on a chart.

In addition to the properties inherited from the base DataLabelBase interface, the DataLabelOptions interface provides the DataLabelOptions.LeaderLines property that allows you to display leader lines connecting data labels with the corresponding data points in a chart.

To access an object exposing the DataLabelOptions interface, use the ChartView.DataLabels property, which allows modifying all data labels within a chart view. To adjust data labels of a particular series, use the Series.CustomDataLabels property. This property provides access to the DataLabelCollection object which inherits data label settings from the DataLabelOptions interface. To modify an individual data label, add a DataLabel object by its index to the data label collection and then change the desired properties of that object.

Example

The example below demonstrates how to create a pie chart and adjust the display settings of its data labels. In particular, set the DataLabelBase.ShowCategoryName and DataLabelBase.ShowPercent properties to true to display the category name and percentage value in a data label at the same time. To separate these items, assign a new line character to the DataLabelBase.Separator property, so the percentage value will be automatically wrapped to a new line.

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

' Create a chart and specify its location.
Dim chart As Chart = worksheet.Charts.Add(ChartType.Pie, worksheet("B2:C7"))
chart.TopLeftCell = worksheet.Cells("E2")
chart.BottomRightCell = worksheet.Cells("K15")

' Display the category name and percentage.
Dim dataLabels As DataLabelOptions = chart.Views(0).DataLabels
dataLabels.ShowCategoryName = True
dataLabels.ShowPercent = True
dataLabels.Separator = Constants.vbLf

' Set the chart style.
chart.Style = ChartStyle.ColorGradient
' Hide the legend.
chart.Legend.Visible = False
' Set the angle of the first pie-chart slice.
chart.Views(0).FirstSliceAngle = 100
See Also