Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

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

interface XDiagram

Base Interface
com::sun::star::drawing::XShape

Description
manages the diagram of the chart document.
See also
XChartDocument


Known Services which Export this Interface

com::sun::star::chart::Diagram the base service for the diagram of the chart document.

Methods' Summary

getDiagramType
getDataRowProperties
getDataPointProperties

Methods' Details

getDiagramType
 
string
getDiagramType();
Returns
a string representing the diagram type. This string contains the fully qualified name of the corresponding service.
getDataRowProperties
 
com::sun::star::beans::XPropertySet
getDataRowProperties(
[ in ] 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
 
com::sun::star::beans::XPropertySet
getDataPointProperties(
[ in ] long nCol,
[ in ] 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