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

interface XDiagram
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-::com::sun::star::drawing::XShapeDescriptor
    |
    +-::com::sun::star::drawing::XShape
       |
       +-XDiagram
Description
manages the diagram of the chart document.
See also
XChartDocument

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 

raises(

 
nRow ) 
::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
[in] long 

raises(

 
nCol,
nRow ) 
::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