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

DataLabelBase.ShowValue Property

Gets or sets a value indicating whether the data point value should be displayed in a data label.

Namespace: DevExpress.Spreadsheet.Charts

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

Declaration

bool ShowValue { get; set; }

Property Value

Type Description
Boolean

true, to show value labels; otherwise, false.

Example

The example below demonstrates how to create a clustered column chart and display value labels outside the end of each column by setting the DataLabelBase.ShowValue property to true.

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")

' Show data labels.
chart.Views(0).DataLabels.ShowValue = True

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