:: com :: sun :: star :: chart2 ::

interface XChartTypeContainer

Methods' Summary
addChartType  
removeChartType removes one data series from the chart type container.  
getChartTypes retrieve all chart types  
setChartTypes set all chart types  
Methods' Details
addChartType
void
addChartType( [in] XChartType  aChartType )
raises( ::com::sun::star::lang::IllegalArgumentException );

removeChartType
void
removeChartType( [in] XChartType  aChartType )
raises( ::com::sun::star::container::NoSuchElementException );

Description
removes one data series from the chart type container.
getChartTypes
sequence< XChartType >
getChartTypes();

Description
retrieve all chart types
setChartTypes
void
setChartTypes( [in] sequence< XChartType >  aChartTypes )
raises( ::com::sun::star::lang::IllegalArgumentException );

Description
set all chart types
Top of Page