interface XTableChart in module com::sun::star::table::

(Global Index)

Syntax

interface XTableChart : com::sun::star::uno::XInterface ;

Method Summary

getHasColumnHeaders

setHasColumnHeaders specifies whether the first row of data is interpreted as column headers or data.

getHasRowHeaders

setHasRowHeaders specifies whether the first column of data is interpreted as row headers or data.

getRanges

setRanges sets the cell ranges that contain the data for the chart.

Known Services Which Export this Interface

com::sun::star::table::TableChart

Method Details



getHasColumnHeaders

Syntax

boolean getHasColumnHeaders ();

Returns

whether the first row of data is interpreted as column headers or data.

setHasColumnHeaders

Syntax

void setHasColumnHeaders (
boolean bHasColumnHeaders );

Description

specifies whether the first row of data is interpreted as column headers or data.


getHasRowHeaders

Syntax

boolean getHasRowHeaders ();

Returns

whether the first column of data is interpreted as row headers or data.

setHasRowHeaders

Syntax

void setHasRowHeaders (
boolean bHasRowHeaders );

Description

specifies whether the first column of data is interpreted as row headers or data.


getRanges

Syntax

sequence< com::sun::star::table::CellRangeAddress > getRanges ();

Returns

the cell ranges that contain the data for the chart.

setRanges

Syntax

void setRanges (
sequence< com::sun::star::table::CellRangeAddress > aRanges );

Description

sets the cell ranges that contain the data for the chart.

Top of Page