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

interface XPivotTableDataProvider

Methods' Summary
getColumnFields names of column fields from the associated pivot table  
getRowFields names of row fields from the associated pivot table  
getPageFields names of page fields from the associated pivot table  
getDataFields names of data fields from the associated pivot table  
getPivotTableName get the associated pivot table name  
setPivotTableName set the associated pivot table name  
hasPivotTable check if the associated pivot table exists  
createDataSequenceOfValuesByIndex creates a single data sequence of values for the given data series index. * *  
createDataSequenceOfLabelsByIndex creates a single data sequence of label(s) for the given data series index. * *  
createDataSequenceOfCategories creates a single data sequence of categories.  
getFieldOutputDescription field output description: either "- all -", "- multiple -", or specific value * *  
Methods' Details
getColumnFields
sequence< PivotTableFieldEntry >
getColumnFields();

Description
names of column fields from the associated pivot table
getRowFields
sequence< PivotTableFieldEntry >
getRowFields();

Description
names of row fields from the associated pivot table
getPageFields
sequence< PivotTableFieldEntry >
getPageFields();

Description
names of page fields from the associated pivot table
getDataFields
sequence< PivotTableFieldEntry >
getDataFields();

Description
names of data fields from the associated pivot table
getPivotTableName
string
getPivotTableName();

Description
get the associated pivot table name
setPivotTableName
void
setPivotTableName( [in] string  sPivotTableName );

Description
set the associated pivot table name
hasPivotTable
boolean
hasPivotTable();

Description
check if the associated pivot table exists
createDataSequenceOfValuesByIndex
XDataSequence
createDataSequenceOfValuesByIndex( [in] long  nIndex );

Description
creates a single data sequence of values for the given data series index. * *
Parameter nIndex
* index of the data series
createDataSequenceOfLabelsByIndex
XDataSequence
createDataSequenceOfLabelsByIndex( [in] long  nIndex );

Description
creates a single data sequence of label(s) for the given data series index. * *
Parameter nIndex
* index of the data series
createDataSequenceOfCategories
XDataSequence
createDataSequenceOfCategories();

Description
creates a single data sequence of categories.
getFieldOutputDescription
string
getFieldOutputDescription( [in] long  nDimensionIndex );

Description
field output description: either "- all -", "- multiple -", or specific value * *
Parameter nDimensionIndex
* dimension index of the field
Top of Page