Top   Module   Use   Manual   Index 

com :: sun :: star :: chart ::

constants group ChartDataCaption


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


Constants

const long NONE = = 0;
Description
No captions are displayed.
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.
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.

const long TEXT = = 4;
Description
The caption contains the category name of the category to which a data point belongs.
const long FORMAT = = 8;
[ DEPRECATED ]
Description
The number formatter is always used for displaying the value as value. So this setting is deprecated.
const long SYMBOL = = 16;
Description
The symbol of data column/row is additionally displayed in the caption.
Top of Page