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

interface XDiagram
Base Interfaces
XDiagram
┗ ::com::sun::star::drawing::XShape
   ┗ ::com::sun::star::drawing::XShapeDescriptor

::com::sun::star::drawing::XShape
(referenced interface's summary:)
lets you do a basic transformation on a ::com::sun::star::drawing::Shape and get its type.
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  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