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

unpublished service RectangularDataSource
Description
describes a data source that bases on a two-dimensional range of data, like a cell range in a spreadsheet.

Components supporting this service have the duty to interpret the given range in an appropriate way to represent a ::DataSource.


Included Services - Summary
DataSource

A RectangularDataSource is certainly also a DataSource.

::com::sun::star::chart::ChartDataArray
(referenced entity's summary:)
must be supported by each data source for charts, where you want to access the values directly.
Properties' Summary
string
SourceRange
contains a range string in the format specified by the Office XML format for tables, that refers to data in the table of a spreadsheet or a text document.  
::com::sun::star::chart::ChartDataRowSource
DataRowSource
determines if the data referred to in SourceRange is split up into ::DataSequences using rows (::com::sun::star::chart::ChartDataRowSource::ROWS) or columns (::com::sun::star::chart::ChartDataRowSource::COLUMNS).  
Included Services - Details
DataSource
Description
A RectangularDataSource is certainly also a DataSource.
::com::sun::star::chart::ChartDataArray
(referenced entity's summary:)
must be supported by each data source for charts, where you want to access the values directly.
Properties' Details
SourceRange
string SourceRange;
Description
contains a range string in the format specified by the Office XML format for tables, that refers to data in the table of a spreadsheet or a text document.

This range is used to determine the rectangular range chosen. The ::DataSequence::SourceRange properties of the ::DataSequences are ignored for this type of ::DataSource.

DataRowSource
::com::sun::star::chart::ChartDataRowSource DataRowSource;
Description
determines if the data referred to in SourceRange is split up into ::DataSequences using rows (::com::sun::star::chart::ChartDataRowSource::ROWS) or columns (::com::sun::star::chart::ChartDataRowSource::COLUMNS).

 
Top of Page