:: com :: sun :: star :: chart2 ::

unpublished service DataSequence
Description
describes a container for a sequence of values.

With the interface XDataSequence it is possible to transfer a complete sequence of values. With the ::com::sun::star::container::XIndexContainer it is possible to access single elements.


Exported Interfaces
XDataSequence
Description
provides read- and write-access to the underlying data.
XNumericalDataSequence
Usage Restrictions
optional
Description
you may implement this interface to allow a fast acces to numerical data. With this interface you can get a sequence of double values.
XTextualDataSequence
Usage Restrictions
optional
Description
you may implement this interface to allow a fast acces to textual data. With this interface you can get a sequence of string values.
::com::sun::star::container::XIndexContainer
Usage Restrictions
optional
Description
provides read- and write-access to single elements of the underlying data.
::com::sun::star::beans::XPropertySet
Description
the property interface by which the properties of all supported services are exchanged
Properties' Summary
DataSequenceRole
Role
The role of the series inside a data series. This may be any string. However some strings are predefined and should always be used in the same way.  
boolean
Hidden
If true , the values are hidden, and should therefore not be used. This may result in omitting a complete data series object on rendering.  
sequence< long >
HiddenValues
[ OPTIONAL ]
a sequence of indexes that identify data points that should not be rendered, because they are hidden in the underlying data provider.  
Properties' Details
Role
DataSequenceRole Role;
Description
The role of the series inside a data series. This may be any string. However some strings are predefined and should always be used in the same way.
See also
DataSequenceRole
Hidden
boolean Hidden;
Description
If true , the values are hidden, and should therefore not be used. This may result in omitting a complete data series object on rendering.
HiddenValues
sequence< long > HiddenValues;
Usage Restrictions
optional
Description
a sequence of indexes that identify data points that should not be rendered, because they are hidden in the underlying data provider.

 
Top of Page