interface XDiagram in module com::sun::star::chart::

(Global Index)

Syntax

interface XDiagram : com::sun::star::drawing::XShape ;

Description

manages the diagram of the chart document.

See also

XChartDocument

Method Summary

getDiagramType

getDataRowProperties

getDataPointProperties

Known Services Which Export this Interface

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

Method Details



getDiagramType

Syntax

string getDiagramType ();

Returns

a string representing the diagram type. This string contains the fully qualified name of the corresponding service.

getDataRowProperties

Syntax

com::sun::star::beans::XPropertySet getDataRowProperties (
long nRow )
raises ( com::sun::star::lang::IndexOutOfBoundsException );

Returns

the properties of the specified data row (series).

Parameter nRow

the index of the series (0-based)

See also

ChartDataRowProperties

getDataPointProperties

Syntax

com::sun::star::beans::XPropertySet getDataPointProperties (
long nCol,
long nRow )
raises ( com::sun::star::lang::IndexOutOfBoundsException );

Returns

the properties of the specified data point.

Parameter nCol

the index of the data point of a series (0-based).

Parameter nRow

the index of a series (0-based).

See also

ChartDataPointProperties
Top of Page