Top   Module   Use   Manual   Index 

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

constants group ChartSymbolType


Description
These values specify the type of the symbol used for data points.

This only applies to diagrams that use symbols like line diagrams.

The default symbols are currently:
Symbol 0 a square
Symbol 1 a diamond
Symbol 2 a triangle pointing down
Symbol 3 a triangle pointing up
Symbol 4 a triangle pointing right
Symbol 5 a triangle pointing left
Symbol 6 a bow tie
Symbol 7 a rotated bow tie

See also
LineDiagram
See also
ChartDataPointProperties


Constants

const long NONE = = -3;
Description
No symbol is used.
const long AUTO = = -2;
Description
The symbol is selected automatically. The size of symbol will be dynamic and the type depends on the data row number.
const long BITMAPURL = = -1;
Description
Take a Bitmap from a URL and use this as symbol.

The bitmap given by the URL set in the property ChartDataPointProperties::SymbolBitmapURL is copied so that the graphic is embedded.

See also
ChartDataPointProperties
const long SYMBOL0 = = 0;
Description
The default symbol for row 0 is used.
const long SYMBOL1 = = 1;
Description
The default symbol for row 1 is used.
const long SYMBOL2 = = 2;
Description
The default symbol for row 2 is used.
const long SYMBOL3 = = 3;
Description
The default symbol for row 3 is used.
const long SYMBOL4 = = 4;
Description
The default symbol for row 4 is used.
const long SYMBOL5 = = 5;
Description
The default symbol for row 5 is used.
const long SYMBOL6 = = 6;
Description
The default symbol for row 6 is used.
const long SYMBOL7 = = 7;
Description
The default symbol for row 7 is used.
Top of Page