constants group ChartDataCaption in module com::sun::star::chart::

(Global Index)

Syntax

constants group ChartDataCaption;

Description

These values specify how the captions of data points are displayed.

Constants Summary

NONE No captions are displayed.

VALUE The caption contains the value of the data point in the number format of the axis that is attached to the respective data series.

PERCENT The caption contains the value of the data point in percent of all data points of one category.

TEXT The caption contains the category name of the category to which a data point belongs.

FORMAT The number formatter is always used for displaying the value as value. So this setting is deprecated.

SYMBOL The symbol of data column/row is additionally displayed in the caption.

Field Details



NONE

Syntax

const long  NONE = 0;

Description

No captions are displayed.


VALUE

Syntax

const long  VALUE = 1;

Description

The caption contains the value of the data point in the number format of the axis that is attached to the respective data series.


PERCENT

Syntax

const long  PERCENT = 2;

Description

The caption contains the value of the data point in percent of all data points of one category.

That means, if a data point is the first one of a series, the percentage is calculated by using the first data points of all available series.


TEXT

Syntax

const long  TEXT = 4;

Description

The caption contains the category name of the category to which a data point belongs.


FORMAT

[ DEPRECATED ]

Syntax

const long  FORMAT = 8;

Description

The number formatter is always used for displaying the value as value. So this setting is deprecated.


SYMBOL

Syntax

const long  SYMBOL = 16;

Description

The symbol of data column/row is additionally displayed in the caption.

Top of Page