DataValueVisible

Applies to

Graph controls and Graph DataWindows

Description

Specifies whether the numerical data values are displayed on the graph. When enabled, each data point's value will be rendered above its corresponding bar or column in the chart.

This property is applicable to the following graph types:

  • Bar

  • Bar3DObj

  • Col

  • Col3DObj

When the graph contains multiple data series or large numeric values, the displayed values may overlap. Consider adjusting the dataset, axis scale, or chart layout for better readability.

Usage

In a painter

To display the data values on the graph

  • Select the DataValueVisible check box on the General page in the Properties view.

In scripts

The DataValueVisible property takes a boolean value.

This statement sets a Graph control gr_1 to display the data values.

gr_1.DataValueVisible = TRUE

This statement sets a DataWindow in the Graph presentation style to display the data value.

dw_1.Object.gr_1.DataValueVisible = TRUE